package
1.23.0
Repository: https://github.com/shogo82148/std.git
Documentation: pkg.go.dev

# Functions

Decode decodes src into dst, returning both the number of bytes written to dst and the number consumed from src.
Encode encodes src into at most [MaxEncodedLen](len(src)) bytes of dst, returning the actual number of bytes written.
MaxEncodedLenは、n個のソースバイトのエンコーディングの最大長を返します。.
NewDecoder は新しい ascii85 ストリームデコーダを構築します。.
NewEncoderは新しいascii85ストリームエンコーダーを返します。返されたライターに書き込まれたデータはエンコードされ、wに書き込まれます。Ascii85エンコーディングは32ビットのブロックで動作します。書き込みが終了したら、呼び出し元は残りの部分ブロックをフラッシュするために返されたエンコーダーを閉じる必要があります。.

# Type aliases

No description provided by the author