Decodes source into newly-allocated buffer.
This convenience method alleviates the need to manually manage decoding buffers.
The input range to decode.
A newly-allocated ubyte[] buffer containing the decoded string.
auto data = "Gis8TV1u"; assert(Base64.decode(data) == [0x1a, 0x2b, 0x3c, 0x4d, 0x5d, 0x6e]);
See Implementation
Decodes source into newly-allocated buffer.
This convenience method alleviates the need to manually manage decoding buffers.