github.com/blend/go-sdk@v1.20220411.3/stringutil/constants.go (about) 1 /* 2 3 Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file. 5 6 */ 7 8 package stringutil 9 10 const ( 11 // Empty is the empty string 12 Empty string = "" 13 14 // RuneSpace is a single rune representing a space. 15 RuneSpace rune = ' ' 16 17 // RuneNewline is a single rune representing a newline. 18 RuneNewline rune = '\n' 19 20 // LowerA is the ascii int value for 'a' 21 LowerA uint = uint('a') 22 // LowerZ is the ascii int value for 'z' 23 LowerZ uint = uint('z') 24 ) 25 26 var ( 27 // LowerDiff is the difference between lower Z and lower A 28 LowerDiff = (LowerZ - LowerA) 29 )