aboutsummaryrefslogtreecommitdiff
path: root/builtins/text.h
AgeCommit message (Collapse)Author
2024-09-04Add Text:repeat()Bruce Hill
2024-09-04Add Text.map(pat, fn)Bruce Hill
2024-09-04Add method for getting a length-based string as TextBruce Hill
2024-09-04Add Text:matches() for convenience and performanceBruce Hill
2024-09-04Clean up codegen so $Foo"..." comes out as foo$Foo("...") instead ofBruce Hill
Text("...")
2024-09-03Minor codegen cleanup Texts(...)Bruce Hill
2024-09-03Add recursive mode to text replacement and update docsBruce Hill
2024-09-03Clean up text replacement API to use backrefs instead of match_chain()Bruce Hill
2024-09-03Add Text.replace_all({Pattern:Text}) and tweak API for replacement toBruce Hill
support placeholders
2024-09-03Support literal Text("blah") for text that is constant ASCII stringsBruce Hill
2024-09-03Syntax overhaul (comments back to `#`, print statments to `!!`),Bruce Hill
using `$/.../` for patterns and using a DSL for patterns
2024-09-03Deprecate `Where` and change channel API to use a boolean `front` valueBruce Hill
2024-09-02Add Text:find_all()Bruce Hill
2024-09-02Add Text:join() and testsBruce Hill
2024-09-02Add Text:split() and use that with an empty pattern instead of Text:clusters()Bruce Hill
2024-09-02Add Text:lines()Bruce Hill
2024-09-02WIP fixes for synthetic graphemes and adding some text conversionBruce Hill
methods
2024-09-02Fixing string methodsBruce Hill
2024-09-02Initial WIP first pastBruce Hill
2024-08-19Add .text_content as a field on DSLs instead of a methodBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-05-20Deprecate Text.slice()Bruce Hill
2024-05-20Hook up Text.has(), Text.trimmed(), Text.without()Bruce Hill
2024-05-19Add Text.slice()Bruce Hill
2024-03-29Switch naming convention to use '$' in symbols moreBruce Hill
2024-03-18More file commentsBruce Hill
2024-03-09Add langs to the languageBruce Hill
2024-03-04Fix some bugs relating to NUL termination of stringsBruce Hill
2024-03-03Add methods for text:clusters(), text:codepoints(), text:bytes()Bruce Hill
2024-03-03Rename as_str -> as_textBruce Hill
2024-03-03Rename Str -> TextBruce Hill