Just wondering why you allow the user to specify the buffer >=ULID_LEN. Is there any situation where the user wants to supply a larger buffer than ULID_LEN? The tradeoff you're making is having the to_str API be fallible and forcing the user to supply their own buffer.
Hi,
Just wondering why you allow the user to specify the buffer
>=ULID_LEN
. Is there any situation where the user wants to supply a larger buffer thanULID_LEN
? The tradeoff you're making is having theto_str
API be fallible and forcing the user to supply their own buffer.