/** * Turns a single value into an Iterator that will produce 1 result. * Should work for boolean, number, string, object, ... * * @param a anything like object, string, number, ... * @returns an iterator * * @category interface/standard */ declare function itr8FromSingleValue(v: any): IterableIterator; export { itr8FromSingleValue };