文件名称:gleam_string_builder:用于构建字符串的 Gleam 库
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-19 09:54:01
gleam Erlang
gleam_string_builder 用于构建字符串的 Gleam 库 let formatter = sb.new | > sb. string ( "The winner is " ) | > sb.arg_string | > sb. string ( " with " ) | > sb.arg_int | > sb. string ( " points!!" ) | > sb.end2 formatter ( "Sam" , 12 ) == "The winner is Sam with 12 points!!" 自定义格式器 自定义格式化程序是一个函数,它接受一个回调,然后返回另一个使用字符串调用该回调的函数。 fn custom_formatter (callback) { fn (state: State) { let st
【文件预览】:
gleam_string_builder-main
----.gitignore(146B)
----rebar.lock(336B)
----src()
--------string_builder.gleam(5KB)
--------gleam_string_builder.app.src(316B)
----LICENSE(11KB)
----rebar.config(245B)
----.github()
--------workflows()
----gleam.toml(132B)
----README.md(1KB)
----Justfile(162B)
----test()
--------string_builder_test.gleam(3KB)
----.editorconfig(60B)