Function all

Source
pub fn all() -> Vec<char>
Expand description

Produces a Vec of the combined kinds of Zalgo chars. This is all of the chars used to create a generated Zalgo String.

ยงExamples

A basic usage:

let _ = zalgo::all();

// You can then manually use this `Vec` for your own uses.
Examples found in repository?
examples/all.rs (line 5)
4fn main() {
5    let _: Vec<char> = zalgo::all();
6}