Niels Lykke Sørensen

Results 7 issues of Niels Lykke Sørensen

Hey - thanks for this excellent package! My code is littered with `@memoize`! I have a feature request/idea: I have a lot of IO-operations and have thus made my code...

In Accessors v0.1.5. Breaks down when the type parameter is not "used" in the struct. ```julia julia> using Accessors julia> struct MyType{T} i::Int64 end julia> m = MyType{String}(42) MyType{String}(42) julia>...

`@show, @time, @btime` etc... are useful when debugging but should usually not be left in production code. Would it make sense with a check that the code is free of...

new test

Since `filter` is not imported from `Base`, the 4 defined `filter(FilenameMatch, v)` methods are not added to `Base.filter` - which I assume they were supposed to?

Decimals.scinote(str) errors when the number of decimals in the scientific number is higher than the exponent. ``` julia> x = 1.2345678e6 1.2345678e6 julia> Decimal(x) ERROR: ArgumentError: can't repeat a string...

To be fair, the docs for [Constant ](https://docs.juliahub.com/General/Interpolations/stable/api/#Interpolations.Constant) does mention possibility of numerical errors but this seems quite wrong... ``` # wrong - should be 20 julia> interpolate(([1,2],),[10,20],Gridded(Constant{Previous}()))(2) 10 #...

UnsafeArrays currently only support types `T` for `isbitstype(T) == true`. I suppose the reason for this is that non-bits types are at risk of being GC'ed if their only reference...