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

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