package
0.5.36
Repository: https://github.com/devlights/try-golang.git
Documentation: pkg.go.dev

# Functions

ByteSliceToString -- バイトスライスから文字列へメモリコピー無しに変換するサンプルです。 REFERENCES - https://github.com/devlights/gomy/blob/master/zeromemcpy/b2s.go - https://cs.opensource.google/go/go/+/refs/tags/go1.18.4:src/strings/builder.go;l=47.
NewRegister -- このパッケージ用のサンプルを登録する mapping.Register を生成します。.
StringToByteSlice -- 文字列からバイトスライスへメモリコピー無しに変換するサンプルです。 REFERENCES - https://stackoverflow.com/questions/59209493/how-to-use-unsafe-get-a-byte-slice-from-a-string-without-memory-copy - https://github.com/devlights/gomy/blob/master/zeromemcpy/s2b.go - https://pkg.go.dev/[email protected]#Slice.