ronanM
ronanM
With this code ```scala for{ a
> The shortest possible answer to your question is to first try to break computeWithLotOfCpuAndMemory(a) into multiple steps, each of which wrapped in IO, such that each one is a...
Like http://www.lihaoyi.com/Ammonite/#Paths ?
Declare a variable that represent the location of the current `Bash` script: ```bash DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" ``` Then use it in the script: ```bash...
They may have different behaviors : - `Set.contains()` use `hashCode()`. - `contains_()` use `Eq.eqv()`. Optimization may be impossible ?
A warning in the ScalaDoc may be useful for some `FoldableOps` functions ?
What I want is to use `org.bson.BsonValue` (used _in fine_ by Java `mongodb-driver-core`) and use compile-time Codecs as we do usually in Scala without any intermediary data-structures for performance. I...
I've had added some benches. Read: ```text [info] Benchmark Mode Cnt Score Error Units [info] DerivationReadBench.readViaCirce thrpt 3 134,228 ± 91,783 ops/ms [info] DerivationReadBench.readViaDerivation thrpt 3 346,742 ± 80,683 ops/ms...
It's named like that in some other libs, `RxJava` for exemple: `takeWhile`:  `takeUntil`: 
> if you get an empty list for the drop, you don't know if it happened because the last element satisfied the predicate, or because no element satisfied the predicate...