Constructs a stringifiable object from a functor.
import std.conv : text; auto f = (void delegate(const(char)[]) sink) => sink("Hello"); assert(stringifiable(f).text == "Hello", stringifiable(f).text);
See Implementation
Constructs a stringifiable object from a functor.