Takafumi Arakaki
Takafumi Arakaki
> I'd still be tempted to create a seperate package with `freeze` and `thaw` and overload that, so everyone can explore. I'm thinking to do this for a while for...
You beat me to it! I hope I'm not slowing down your excitement but I think `issettable` is too coarse-grained. It might be better to be able to freeze/thaw different...
(I opened https://github.com/andyferris/Freeze.jl/issues/1 to avoid derailing this issue too much.)
I got this message > A patch release is not allowed to narrow the supported ranges of Julia versions. The ranges have changed from Pkg.Types.VersionRange[VersionRange("0.7.0"), VersionRange("1")] (in 0.3.1) to Pkg.Types.VersionRange[VersionRange("0.7"),...
This is interesting. So, `AbstractLogFilter` is kind of a mapping `logger -> logger′`. We can make it literally so by defining `(lxf::AbstractLogFilter)(logger::AbstractLogger) = FilteringLogger(logger, lxf)`. I'd actually generalize it and...
> It's a bit of a conundrum because I think the fact that this "seems surprising" and needs to be explained in transducer tutorials is a sign that users would...
Thanks for opening this up! I was thinking it'd be nice to have open discussion like this somewhere. Here's another thought I want to add. I think it's in the...
FYI, there is a (sub-)discussion in JuliaLang/julia#16606 about adding a better and more visual way to specify `dims`. The idea is to create an array-like object which pairs the array...
> but `sum(along(x, Y))` would be nice Yes, that's what I was actually trying to suggest. (I'm imagining that `Y` is something like `Dim{:x}` or it's singleton instance.) > `along`...
> some stability in the `_f` methods when they aren't really a public API I thought you'd want `_f` to be a public (but non-exported) API because otherwise you can't...