#unicode #brackets #unicode-characters #opening #determine #whether #direction

unicode-brackets

确定字符是否为开闭括号,并更改这些字符的方向

2个版本

使用旧的Rust 2015

0.1.1 2016年9月21日
0.1.0 2016年9月21日

#11#brackets


malk-lexer 中使用

MIT/Apache

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[..], [')', ']', '']);
}

无运行时依赖