I tried to get a bi-gram of a String with letters as bigrams units, but I get an empty Collection as result : ```smalltalk #('Nelson') bigrams. #Nelson bigrams. 'Nelson' bigrams. ``` I expected the output to be: ``` Ne el ls so on ``` Is this supported or I am missing something?
I tried to get a bi-gram of a String with letters as bigrams units, but I get an empty Collection as result :
I expected the output to be:
Is this supported or I am missing something?