mirror of
				https://github.com/redis/go-redis.git
				synced 2025-10-30 16:45:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			331 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			331 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !appengine
 | |
| 
 | |
| package rediscmd
 | |
| 
 | |
| import "unsafe"
 | |
| 
 | |
| // String converts byte slice to string.
 | |
| func String(b []byte) string {
 | |
| 	return *(*string)(unsafe.Pointer(&b))
 | |
| }
 | |
| 
 | |
| // Bytes converts string to byte slice.
 | |
| func Bytes(s string) []byte {
 | |
| 	return *(*[]byte)(unsafe.Pointer(
 | |
| 		&struct {
 | |
| 			string
 | |
| 			Cap int
 | |
| 		}{s, len(s)},
 | |
| 	))
 | |
| }
 |