/* Copyright 2019 The Vitess Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Package hack gives you some efficient functionality at the cost of // breaking some Go rules. package hack import ( "reflect" "unsafe" ) // String force casts a []byte to a string. // USE AT YOUR OWN RISK func String(b []byte) (s string) { if len(b) == 0 { return "" } return *(*string)(unsafe.Pointer(&b)) } // StringPointer returns &s[0], which is not allowed in go func StringPointer(s string) unsafe.Pointer { pstring := (*reflect.StringHeader)(unsafe.Pointer(&s)) return unsafe.Pointer(pstring.Data) }