pub fn codepoint() -> Codepoint
Returns a new pattern that matches the next utf-8 codepoint if it exists.
use bparse::{Pattern, codepoint}; assert_eq!(codepoint().eval("๐จโ๐ฉโ๐งโ๐ฆa".as_bytes()), Some(4))