[][src]Function voca_rs::split::chars

pub fn chars(subject: &str) -> Vec<&str>

Splits subject into an array of characters.

Arguments

  • subject - The string to split into characters.

Example

use voca_rs::*;
split::chars("cloud");
// => ["c", "l", "o", "u", "d"]