(a: A)
| 334 | export const of = <A>(a: A): NonEmptyChunk<A> => makeChunk({ _tag: "ISingleton", a }) as any |
| 335 | |
| 336 | /** |
| 337 | * Creates a new `Chunk` from an iterable collection of values. |
| 338 | * |
| 339 | * **Example** (Creating chunks from iterables) |
no test coverage detected