Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-15 | AK: Add bytes() method to FixedArray. | asynts | |
2020-02-18 | Kernel: Use a FixedArray for a process's extra GIDs | Andreas Kling | |
There's not really enough of these to justify using a HashTable. | |||
2020-01-31 | AK: Add FixedArray::data() | William McPherson | |
2020-01-18 | Meta: Add license header to source files | Andreas Kling | |
As suggested by Joshua, this commit adds the 2-clause BSD license as a comment block to the top of every source file. For the first pass, I've just added myself for simplicity. I encourage everyone to add themselves as copyright holders of any file they've added or modified in some significant way. If I've added myself in error somewhere, feel free to replace it with the appropriate copyright holder instead. Going forward, all new source files should include a license header. | |||
2020-01-07 | AK: Add assertions to FixedArray::operator[] | Andreas Kling | |
Let's catch ourselves if we ever index out of bounds into one of these. | |||
2019-08-07 | AK: Add a FixedArray<T> container | Andreas Kling | |
This is a simple array wrapper that knows its size. It has begin/end so you can use range-for. It also has a resize() that reallocates. |