|
91f66d80bb
|
Support arbitrary argument constructors
|
2025-02-20 17:13:50 -05:00 |
|
|
43a2959be3
|
Add undef
|
2025-02-20 11:59:46 -05:00 |
|
|
058a028aef
|
Switch to langs using constructors
|
2025-02-19 18:50:50 -05:00 |
|
|
c4479e4bd6
|
Add Int:onward() iterator
|
2025-02-13 15:21:00 -05:00 |
|
|
5be9559046
|
Deprecate Range datatype in favor of using iterator methods
|
2025-02-13 15:03:22 -05:00 |
|
|
66eca49d18
|
Tweak set_binding() API
|
2025-02-10 13:13:45 -05:00 |
|
|
be87d8169d
|
Convert the logic for finding closed variables to a more pure functional
style with fewer side effects
|
2025-02-09 13:57:54 -05:00 |
|
|
32da3a3226
|
Add a _ prefix on variables so it's easier to debug in GDB
|
2025-02-04 14:16:06 -05:00 |
|
|
645d66e0de
|
Change table syntax to {key=value} and {:K,V} /{K,V}
|
2025-01-12 16:49:58 -05:00 |
|
|
9e0017e86e
|
Add Int:factorial() and n:choose(k)
|
2024-12-24 14:20:16 -05:00 |
|
|
46b61d3ed2
|
Add text:by_line()/:by_split()/:by_match()
|
2024-12-21 16:32:22 -05:00 |
|
|
478ddad9aa
|
Add Text:reversed()
|
2024-12-19 15:32:19 -05:00 |
|
|
b0faa5adc2
|
Add Text:from()/to() and Array:slice() for symmetry
|
2024-12-19 13:50:35 -05:00 |
|
|
d3eb8b8339
|
Have ask() return an optional text
|
2024-12-15 16:53:18 -05:00 |
|
|
d65a0abba1
|
Add GCD function for integers (of all flavors)
|
2024-12-08 14:28:26 -05:00 |
|
|
37f3e91f6c
|
Rename "NONE" to "none"
|
2024-12-07 16:04:25 -05:00 |
|
|
07dd1894b7
|
Bugfixes for moments mixing up microseconds/nanoseconds, plus adding
accessor fields for them
|
2024-11-30 17:25:36 -05:00 |
|
|
32532836b9
|
Add NaN documentation
|
2024-11-25 15:57:56 -05:00 |
|
|
d4b10514fb
|
Clean up some more null->none renames and fix the documentation. Also
change the literal syntax to `NONE:T` instead of `!T`
|
2024-11-24 16:36:27 -05:00 |
|
|
0e10313d64
|
Switch NaN to be identical to the null value
|
2024-11-24 16:13:23 -05:00 |
|
|
4720ca7a5f
|
Rename Text.utf8_bytes back to Text.bytes
|
2024-11-19 13:30:45 -05:00 |
|
|
ccada385c4
|
Add Text.at(i) for getting a single cluster
|
2024-11-19 13:27:27 -05:00 |
|
|
4231789b71
|
Rename datetime -> moment
|
2024-11-17 14:49:03 -05:00 |
|
|
0df908f55f
|
Support iterating over pointers to collections again
|
2024-11-09 17:54:32 -05:00 |
|
|
06d3ec1380
|
Bugfix for fixed-size integer ranges
|
2024-11-09 16:55:44 -05:00 |
|
|
898bee1581
|
Introduce a Match struct to represent pattern matching results, which
improves the usability of a lot of the APIs. Also bugfix some issues
with ranges.
|
2024-11-09 16:27:54 -05:00 |
|
|
7a4f2e73ad
|
Rename from_text() to parse()
|
2024-11-09 15:11:11 -05:00 |
|
|
a8a35ea688
|
Add Byte.hex()
|
2024-11-05 15:33:08 -05:00 |
|
|
b8d7eabc02
|
Deprecate bit-width integer/num literals in favor of using type
constructors
|
2024-11-05 15:18:32 -05:00 |
|
|
aabc0a3cff
|
Update text API to use optional returns when applicable
|
2024-11-04 01:17:47 -05:00 |
|
|
81a180eda0
|
RNG seed should be non-optional
|
2024-11-03 22:45:49 -05:00 |
|
|
fc9a6f1416
|
Add RNGs to the language
|
2024-11-03 22:37:48 -05:00 |
|
|
52e3d3fe6f
|
Update Path:read_bytes() API to take a byte count
|
2024-11-03 16:58:12 -05:00 |
|
|
39a58bc129
|
Clean up behavior and syntax for unsigned bit shifts (<<<, >>>)
|
2024-11-03 16:06:26 -05:00 |
|
|
792743dff3
|
Add Int64:unsigned_left_shift() and :unsigned_right_shift()
|
2024-11-03 15:27:44 -05:00 |
|
|
87176ead2d
|
Add wrapping plus/minus for fixed-size integers
|
2024-11-03 15:04:28 -05:00 |
|
|
be2673ef2b
|
Make Text:find() return an optional int
|
2024-11-02 13:51:58 -04:00 |
|
|
7cd67dd7f3
|
Add file globbing
|
2024-10-29 14:36:49 -04:00 |
|
|
052316261a
|
Finish deprecating stack refs with &
|
2024-10-27 20:35:30 -04:00 |
|
|
0d615443dc
|
Update DateTime API to have separate methods for getting each component
instead of get(...)
|
2024-10-27 18:41:00 -04:00 |
|
|
67702b2d77
|
Fix issue with non-ID chars in filenames
|
2024-10-10 01:09:17 -04:00 |
|
|
074cf22ad4
|
Change function syntax from func(args)->ret to func(args -> ret)
|
2024-10-09 13:26:28 -04:00 |
|
|
a25699282d
|
Tidy up some function annotations to use func(x,y:Foo) syntax instead of
func(x:Foo,y:Foo)
|
2024-10-09 02:22:32 -04:00 |
|
|
1a6ce0047b
|
Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code
|
2024-09-30 14:39:30 -04:00 |
|
|
793717729a
|
Parameterize with timezones
|
2024-09-30 01:53:39 -04:00 |
|
|
d714519809
|
Fix some timezone issues
|
2024-09-29 23:09:37 -04:00 |
|
|
05515d8645
|
Add DateTime
|
2024-09-29 20:06:09 -04:00 |
|
|
9b15799e73
|
Support iterating over thunks that always return non-null values (useful
for infinite loops)
|
2024-09-27 14:45:06 -04:00 |
|
|
ed8b8901c0
|
Add '$' prefix on all user code
|
2024-09-24 14:54:22 -04:00 |
|
|
800e386105
|
Rename from_unsafe_text to without_escaping
|
2024-09-24 13:26:49 -04:00 |
|