| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #5686 from thetarnav/zero-small-array-resize | gingerBill | 2025-09-26 | 1 | -7/+53 |
| |\ | | | | | Zero small array resize | ||||
| | * | Correct set_example in small_array | Damian Tarnawski | 2025-09-15 | 1 | -2/+2 |
| | | | |||||
| | * | Correct small_array resize examples | Damian Tarnawski | 2025-09-15 | 1 | -3/+3 |
| | | | |||||
| | * | Replace `mem.zero_slice` with `intrinsics.mem_zero` in `small_array.resize` | Damian Tarnawski | 2025-09-15 | 1 | -3/+3 |
| | | | |||||
| | * | Add `@require` to core:mem import in small_array | Damian Tarnawski | 2025-09-15 | 1 | -3/+2 |
| | | | |||||
| | * | Zero memory in small_array.resize and add non_zero_resize | Damian Tarnawski | 2025-09-15 | 1 | -3/+50 |
| | | | |||||
| * | | Add "contextless" to small_array get_safe and get_ptr_safe | Damian Tarnawski | 2025-09-14 | 1 | -3/+3 |
| |/ | |||||
| * | Propogate `#caller_location` to core:container/queue procs | Mohit Sethi | 2025-08-22 | 1 | -12/+12 |
| | | |||||
| * | container/queue: Remove trailing whitespace | Feoramund | 2025-06-11 | 1 | -6/+6 |
| | | |||||
| * | container/queue: Add `shrink` | Feoramund | 2025-06-11 | 1 | -0/+27 |
| | | |||||
| * | container/queue: Let queues be re-initialized with different allocators | Feoramund | 2025-06-11 | 1 | -3/+6 |
| | | |||||
| * | container/queue: Add common aliases `enqueue` and `dequeue` | Feoramund | 2025-06-11 | 1 | -0/+2 |
| | | |||||
| * | container/queue: Document the package | Feoramund | 2025-06-11 | 1 | -22/+193 |
| | | |||||
| * | container/queue: Reorganize | Feoramund | 2025-06-11 | 1 | -12/+15 |
| | | |||||
| * | container/queue: Deprecate `peek_*` | Feoramund | 2025-06-11 | 1 | -6/+4 |
| | | | | | | | The `*_ptr` and `peek_*` procedures did the same thing, except `peek_*` was over-cautiously putting the index through a modulo when all assignments to `q.offset` are already wrapped. | ||||
| * | container/queue: Fix and add more bounds checking | Feoramund | 2025-06-11 | 1 | -11/+31 |
| | | |||||
| * | Fix off-by-one error in `priority_queue.remove` | Feoramund | 2025-05-21 | 1 | -6/+4 |
| | | |||||
| * | Fix lru.remove | Jeroen van Rijn | 2025-04-29 | 1 | -1/+1 |
| | | |||||
| * | Let `core:container/priority_queue` return `runtime.Allocator_Error` | Jeroen van Rijn | 2025-04-17 | 1 | -6/+9 |
| | | | | | `init`, `reserve` and `push` now return `runtime.Allocator_Error`. | ||||
| * | Fix broken examples in documentation tester. | Jeroen van Rijn | 2025-04-05 | 1 | -9/+9 |
| | | | | | | | | | | No more: ``` We could not find the procedure "pkg_foo_example :: proc()" needed to test the example created for "pkg.foo" The following procedures were found: bar() ``` | ||||
| * | core:container/small_array: add package documentation | Robin Bergewski | 2025-04-05 | 2 | -0/+662 |
| | | |||||
| * | container/queue: fix init_with_contents | Laytan Laats | 2025-01-20 | 1 | -2/+1 |
| | | | | | Fixes #4729 | ||||
| * | container/bit_array: add 'init' procedure | Laytan Laats | 2024-09-29 | 1 | -6/+35 |
| | | |||||
| * | Merge pull request #4191 from laytan/improve-package-doc-comments | gingerBill | 2024-09-04 | 2 | -10/+13 |
| |\ | | | | | core: improve package doc comments for the documentation generator | ||||
| | * | core: improve package doc comments for the documentation generator | Laytan Laats | 2024-09-03 | 2 | -10/+13 |
| | | | |||||
| * | | Change `Bit_Array.max_index` to `length` | Feoramund | 2024-09-03 | 1 | -18/+34 |
| | | | | | | | | | This will allow correct iteration of empty `bit_array`s. | ||||
| * | | Fix iteration of biased `Bit_Array` | Feoramund | 2024-09-03 | 1 | -3/+3 |
| | | | |||||
| * | | Add `bit_array.shrink` | Feoramund | 2024-09-03 | 1 | -0/+30 |
| | | | |||||
| * | | Let `bit_array.create` make zero-length arrays | Feoramund | 2024-09-03 | 1 | -1/+1 |
| |/ | |||||
| * | Return false if `Small_Array` can't append multiple elements | Feoramund | 2024-09-03 | 1 | -3/+7 |
| | | | | | Fixes #4177 | ||||
| * | Merge pull request #3908 from NicknEma/Intrusive-list-docs | Jeroen van Rijn | 2024-07-14 | 2 | -2/+215 |
| |\ | | | | | Write docs for `core:container/intrusive/list` package | ||||
| | * | Fixed grammar and expanded info | NicknEma | 2024-07-14 | 2 | -3/+10 |
| | | | | | | | | | Fixed points made by Jeroen. | ||||
| | * | Simplify and fix doc examples | NicknEma | 2024-07-12 | 1 | -26/+6 |
| | | | | | | | | | | | Remove unnecessary examples; fix compilation errors in the remaining ones | ||||
| | * | Write doc comments in intrusive_list.odin | NicknEma | 2024-07-12 | 1 | -2/+189 |
| | | | | | | | | | Write description, inputs/returns and some examples for each procedure | ||||
| | * | Create doc.odin | NicknEma | 2024-07-12 | 1 | -0/+39 |
| | | | | | | | | | Create a doc file with a brief of the package and an example program (copied from a discord message by laytan) | ||||
| * | | Fix off-by-one in queue `back` and `back_ptr` procs | Laytan Laats | 2024-07-14 | 1 | -2/+2 |
| | | | |||||
| * | | Imply `#no_capture` to all variadic parameters | gingerBill | 2024-07-14 | 1 | -1/+1 |
| | | | |||||
| * | | Add more uses of `#no_capture` | gingerBill | 2024-07-14 | 1 | -1/+1 |
| |/ | |||||
| * | Fix loads of indentation issues with mixing spaces and tabs | gingerBill | 2024-06-29 | 2 | -5/+5 |
| | | |||||
| * | Update `core` to `-strict-style` | gingerBill | 2024-06-29 | 1 | -2/+5 |
| | | |||||
| * | Even more style fixes | gingerBill | 2024-06-29 | 1 | -2/+2 |
| | | |||||
| * | More style improvements | gingerBill | 2024-06-29 | 1 | -2/+1 |
| | | |||||
| * | Merge pull request #3339 from axxeny/patch-1 | gingerBill | 2024-06-28 | 1 | -2/+2 |
| |\ | | | | | fix comments in core:container/queue. | ||||
| | * | fix comments in core:container/queue. | Arseniy Poroshin | 2024-03-26 | 1 | -2/+2 |
| | | | |||||
| * | | Fix alignment. | Jeroen van Rijn | 2024-06-27 | 1 | -1/+1 |
| | | | |||||
| * | | Loosen constraint on the Key type in rb & avl tree | destroycomputers | 2024-06-18 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | The current constraint on the `init_ordered' function accepts only numeric types. While one still can init a non-numerically-keyed tree by passing a comparator explicitly, the reason to disallow non-numeric ordered types is nowhere to be found. | ||||
| * | | Address concerns. | Jeroen van Rijn | 2024-05-24 | 1 | -4/+5 |
| | | | |||||
| * | | Fix package line. | Jeroen van Rijn | 2024-05-24 | 1 | -1/+1 |
| | | | |||||
| * | | Add `core:container/rbtree` | Jeroen van Rijn | 2024-05-23 | 2 | -6/+570 |
| | | | | | | | | | | | | | | | | | Add a red-black tree with configurable $Key and $Value. Also includes tests that verify it maintains RB invariants, doesn't leak. Originally based on the CC0 implementation from literateprograms.org. But reworked to the same API used by @Yawning's excellent `core:container/avl` for ease of use. | ||||
| * | | Update numerous package declaration names | gingerBill | 2024-04-18 | 2 | -2/+2 |
| | | | |||||