aboutsummaryrefslogtreecommitdiff
path: root/builtins/channel.c
AgeCommit message (Collapse)Author
2024-09-03Use Text("...") literal constructor instead of Text$from_str("...")Bruce Hill
function call.
2024-09-03Deprecate `Where` and change channel API to use a boolean `front` valueBruce Hill
2024-09-02Initial WIP first pastBruce Hill
2024-08-18Update channel API to take a Where parameterBruce Hill
2024-08-18Add Channel:peek()Bruce Hill
2024-08-18Rename push/pop to give/get, since it's not stack-orderedBruce Hill
2024-08-15Add method for array:remove_item(item) and renameBruce Hill
array:remove(index)->array:remove_at(index) to avoid confusion. Also hook up array:has()
2024-08-14Fix up type conversions with ints and numsBruce Hill
2024-08-13Fix channelsBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-11Support channels with maximum sizeBruce Hill
2024-08-11Add channels and threadsBruce Hill