2个版本
使用旧的Rust 2015
0.1.1 | 2016年9月21日 |
---|---|
0.1.0 | 2016年9月21日 |
#11 在 #brackets
在 malk-lexer 中使用
21KB
271 行
unicode-brackets
提供确定字符是否为开闭括号以及更改这些字符方向的方法。
此crate使用的定义来自Unicode双向算法(UAX #9)。具体请参阅文件http://www.unicode.org/Public/UCD/latest/ucd/BidiBrackets.txt
此crate使用no_std
属性,消除了对std
的依赖。
extern crate unicode_brackets;
use unicode_brackets::UnicodeBrackets;
fn main() {
/// Some of the many different kinds of opening bracket.
let opening_chars = ['(', '[', '⦑'];
for c in opening_chars {
assert!(c.is_open_bracket());
}
let closing_chars: Vec<char> = opening_chars.iter()
.map(|c| c.to_close_bracket())
.collect();
assert_eq!(closing_chars[..], [')', ']', '⦒']);
}
lib.rs
:
提供确定字符是否为开闭括号以及更改这些字符方向的方法。
此crate使用的定义来自Unicode双向算法(UAX #9)。具体请参阅文件http://www.unicode.org/Public/UCD/latest/ucd/BidiBrackets.txt
此crate使用no_std
属性,消除了对std
的依赖。
extern crate unicode_brackets;
use unicode_brackets::UnicodeBrackets;
fn main() {
// Some of the many different kinds of opening bracket.
let opening_chars = ['(', '[', '⦑'];
for c in opening_chars.iter() {
assert!(c.is_open_bracket());
}
let closing_chars: Vec<char> = opening_chars.iter()
.map(|c| c.to_close_bracket())
.collect();
assert_eq!(closing_chars[..], [')', ']', '⦒']);
}