jmh530

Results 42 comments of jmh530

@atilaneves There are also no class unittests for Unique as well. I noticed when the following failed when I tried to run it: ``` import stdx.allocator.mallocator: Mallocator; import automem :...

@atilaneves Hmm, well I was incorrect that there are no unittests for this keep. You just keep them in a separate folder. I'm still not really sure why it fails...

What version of DMD, mir-core, and mir-algorithm are are you using? I would first make sure you are at least on the most recent versions of mir-core and mir-algorithm. There...

When you say `rcarray` creates a new `RCArray` you mean that it creates a copy, right? I also would have thought that taking a slice with `[]` would increase the...

@9il Thanks for the reply. When I try to also allow it to work with a GC slice, then I get errors again. ``` import core.lifetime: move; import mir.rc.array; struct...

The current implementation is [here](https://github.com/jmh530/mir-stat/blob/d8b917de93ea047d38f372dae4ef208783338582/source/mir/stat/descriptive/histogram/histogram.d#L41) (i.e. from before this discussion).

@hatf0 When I'm developing on mir-algorithm (yesh, it has been a while), I usually change the unittests that are relevant to me (including new ones) to some other version specifier...

Use `elementCount` to get the number of elements in the whole slice. `length` works the same way that it does for D's dynamic arrays. For instance, the following compiles without...

I see your point. Your issue is really that the result of `arr.sliced(2, 1)` is `[[1], [2]]` without any error. Right now, the relevant section of the code you would...

I just grabbed what was listed on Wikipedia and figured more could be added later if anyone needed them. There is a recurrence relation that can be used to get...