Function emojis::iter[][src]

pub fn iter() -> impl Iterator<Item = &'static Emoji>
Expand description

Returns an iterator over all emojis.

  • Ordered by Unicode CLDR data.
  • Excludes skin tones.

Examples

let mut iter = emojis::iter();
assert_eq!(iter.next().unwrap(), "😀");