package
0.0.1
Repository: https://github.com/fmstephe/flib.git
Documentation: pkg.go.dev

# README

Unsafe Conversions Between String <-> []byte

This package is intended to be a clear implementation of the solution suggested by Keith Randal here

https://groups.google.com/d/msg/golang-nuts/Zsfk-VMd_fU/WXPjfZwPBAAJ

This avoids the problems associated with using a uintptr as well as failing tests if the runtime representation of string or []byte changes.

# Functions

Unsafely converts b into a string.
Unsafely converts s into a byte slice.