[package]
name = "scryer-prolog"
-version = "0.8.116"
+version = "0.8.117"
build = "build.rs"
repository = "https://github.com/mthom/scryer-prolog"
(backtrackable).
- [x] Delimited continuations based on reset/3, shift/1 (documented in
"Delimited Continuations for Prolog").
-- [x] Add opt-in tabling library based on delimited continuations
+- [x] Tabling library based on delimited continuations
(documented in "Tabling as a Library with Delimited Control").
- [ ] A _redone_ representation of strings as difference list of
chars, using a packed internal representation (_in progress_).
'\u{0c}' => "\\f".to_string(), // UTF-8 form feed
'\u{08}' => "\\b".to_string(), // UTF-8 backspace
'\u{07}' => "\\a".to_string(), // UTF-8 alert
- '\x20'..='\x7e' => c.to_string(),
+ '\x20' ..= '\x7e' => c.to_string(),
_ => format!("\\x{:x}\\", c as u32),
}
}