Stepan Koltsov

Results 117 issues of Stepan Koltsov

Add an ability to limit the `Bump` size: if the number of allocated bytes exceeds the configured number, allocation should fail. AFAIU, it is possible to make this feature with...

Consider this scenario: * allocate 10 bytes * allocate 1 Mb * allocate 10 bytes `bumpalo` will allocate 3M, because third allocation will create third chunk double the size of...

Took me some time to figure it out.

Code: ``` record Foo[A] ( a: Type(A), ); main() { var foo = Foo[#1](); if (foo.a != #1) //

Error is this: ``` [lib-clay/cocoa/util] Failure: compiler error Error: Attribute 'byval' does not support unsized types! %156 = call %ObjcObject* bitcast (%ObjcObject* (%ObjcObject*, %ObjcMethod*, ...)* @objc_msgSend to %ObjcObject* (%ObjcObject*, %ObjcMethod*,...

macosx

seems like compiler rejects valid uint128 literals. Like in this code: ``` main() { var a = 0xff0102030405060708090a0b0c0d0e0f_ull; } ``` ``` ############################### main() { var a = 0xff0102030405060708090a0b0c0d0e0f_ull; ------------^ }...

It would be perfect if codejar provided a react component which would work in both server and browser environments. The second best option is a function like `render(text)` which would...

feature

## Group by Currently `cargo bloat` support grouping by: * crate * full symbol I think it would be helpful it `cargo bloat` could also group by: * function without...

Useful for long running processes with state (think REPL). Current implementation is linear, can be optimized later to be `O(1)`.