aboutsummaryrefslogtreecommitdiff
path: root/unsafe.go
blob: dc6cb97e80dac295b5e8848396e75cc7864e953a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

// SPDX-License-Identifier: BSD-2-Clause
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>

package main

import "unsafe"

// stringToBytes converts a string to a byte slice without copying the string.
// Memory is borrowed from the string.
// The resulting byte slice must not be modified in any form.
func stringToBytes(s string) (bytes []byte) {
	return unsafe.Slice(unsafe.StringData(s), len(s))
}