Luciano
Luciano
> Also, since the @newtype annotation gives your type a distinct type at compile-time, primitives will naturally box as they do when they are applied in any generic context. @kaishh...
Are you using the notebook/console/qtconsole?
Here's an alternative. I got this working by following the [jupyter kernel docs](https://jupyter-client.readthedocs.io/en/latest/kernels.html#kernelspecs). First, clone this repository, and run the sbt commands: 1. `compile` 2. `export runtime:fullClasspath` This will fetch...
Sorry, you are correct. I should have been specific. I meant LZ4Decompressor, and it's one method `decompress`. ``` Deprecated. Use LZ4FastDecompressor instead. @Deprecated public interface LZ4Decompressor ```
No, I haven't had a chance. I will need to re-write a scala adapter soon (next few months), so I may take a look then. I think the way to...
So `Datetime64` doesn't explicitly encode the res. A pretty detailed description is available [here](https://github.com/numpy/numpy/blob/c90d7c94fd2077d0beca48fa89a423da2b0bb663/doc/neps/datetime-proposal.rst). wrt to the deltas in the index, I suspect this is because they're timestamping the ticks...
> Presumably, you'd be using the same precision for every tick or snapshot or whatever inserted for a given symbol, so how about just adding that to the metadata for...
I'm curious, do you foresee this affecting the storage spec? Specifically, * As all the BSON binary fields are serialized with LZ4 compression, how can you interop with the arrow...
This also appears to happen across `compile` and `test` tasks in a single SBT project. i.e. if I reference a singleton type declared in `scala/main` from `scala/test`, this error gets...
Over xmas I wrote a working implementation of `VectorSpace` using net-lib blas (using netlib-java as per #184). It only supports L1 routines (these are essentially binary ops between 1-D vectors...