Tells whether the provided value can be cast to string.
public static final function isStringable(mixed $value) : bool { return \is_string($value) || $value instanceof \Stringable || \is_scalar($value); }