getShowable
import { getShowable } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/iterable.ts";Create a Showable instance for Iterable given a Showable instance for its elements.
@example
import * as I from "./iterable.ts";
import * as N from "./number.ts";
const showable = I.getShowable(N.ShowableNumber);
const numbers = I.wrap(1, 2, 3, 4, 5);
const result = showable.show(numbers); // "Iterable[1, 2, 3, 4, 5]"