github.com/primecitizens/pcz/std@v0.2.1/builtin/print/const_utf8_endnull.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  //go:build android
     5  
     6  package stdprint
     7  
     8  const (
     9  	str_true                  = "true\x00"
    10  	str_false                 = "false\x00"
    11  	str_space                 = " \x00"
    12  	str_slash                 = "/\x00"
    13  	str_newline               = "\n\x00"
    14  	str_comma                 = ",\x00"
    15  	str_left_round_bracket    = "(\x00"
    16  	str_right_round_bracket   = ")\x00"
    17  	str_i_right_round_bracket = "i)\x00"
    18  	str_left_square_bracket   = "[\x00"
    19  	str_right_square_bracket  = "]\x00"
    20  	str_nan                   = "NaN\x00"
    21  	str_positive_inf          = "+Inf\x00"
    22  	str_negative_inf          = "-Inf\x00"
    23  	str_minus                 = "-\x00"
    24  
    25  	float_digits_ext  = 8
    26  	uint_padding      = 1
    27  	string_endpadding = 1
    28  )