1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/strconv
2023-07-19 13:06:41 +03:00
..
bare builtin: use dlmalloc for -freestanding (#13054) 2022-01-06 14:10:37 +02:00
atof_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
atof.c.v fmt: remove redundant parenthesis in the complex infix expr (#17873) 2023-04-04 13:47:48 +03:00
atof.js.v all: change optional to result of io (#16075) 2022-10-16 09:28:57 +03:00
atofq.c.v builtin: reduce the number of array allocations for consts in all V programs (#18889) 2023-07-19 13:06:41 +03:00
atoi_test.v strconv.atoi: optimization (#17913) 2023-04-09 05:54:38 +02:00
atoi.v strconv.atoi: optimization (#17913) 2023-04-09 05:54:38 +02:00
converter_test.v strconv: add test_atof_converter to the tests, as suggested by the code review 2022-11-21 07:41:41 +02:00
f32_f64_to_string_test.v builtin,strconv: append ".0", to float string representations, to ensure clarity (#16079) 2022-10-17 15:41:07 +03:00
f32_str.c.v builtin: reduce the number of array allocations for consts in all V programs (#18889) 2023-07-19 13:06:41 +03:00
f32_str.js.v strconv,js: f64_to_str works on JS backend now; Fix BigInt usage in infix expressions (#12464) 2021-11-15 14:13:44 +02:00
f64_str.c.v builtin: reduce the number of array allocations for consts in all V programs (#18889) 2023-07-19 13:06:41 +03:00
f64_str.js.v fmt: remove redundant parenthesis in the complex infix expr (#17873) 2023-04-04 13:47:48 +03:00
f64_str.v builtin: reduce the number of array allocations for consts in all V programs (#18889) 2023-07-19 13:06:41 +03:00
format_mem.c.v all: 2023 copyright 2023-03-28 22:55:57 +02:00
format_mem.js.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
format_test.v strconv: fix v_sprintf with '%%' (#17708) 2023-03-19 09:52:45 +02:00
format.md tests: remove unnecessary v_printf test 2023-03-19 15:30:52 +03:00
format.v builtin: reduce the number of array allocations for consts in all V programs (#18889) 2023-07-19 13:06:41 +03:00
ftoa.c.v all: 2023 copyright 2023-03-28 22:55:57 +02:00
number_to_base_test.v strconv: fix atoi returning 0 on large strings (#10635) 2021-07-02 10:39:57 +03:00
number_to_base.c.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
structs.v strconv: vfmt everything 2021-06-18 17:59:56 +03:00
tables.v builtin: reduce the number of array allocations for consts in all V programs (#18889) 2023-07-19 13:06:41 +03:00
utilities.c.v all: 2023 copyright 2023-03-28 22:55:57 +02:00
utilities.v js,strconv: port some functions to JS backend, improve rune.str() (#12460) 2021-11-14 21:06:58 +02:00
vprintf.c.v strconv: mark strconv.v_sprintf and strconv.v_printf with [unsafe] (part 2, breaking change, needed an update to vsl) (#18836) 2023-07-10 21:20:47 +03:00

Description:

strconv provides functions for converting strings to numbers and numbers to strings.