This repository was archived by the owner on Nov 20, 2018. It is now read-only.
This repository was archived by the owner on Nov 20, 2018. It is now read-only.
Make IFeatureCollection have generic<T> accessor #522
Closed
Description
Rather than have it as an Extension; so the type of checks in Frame.FastFeatureGet(Type key)
becomes typeof
checks of T
in Frame.FastFeatureGet<T>()
At that point they also become compile time constants meaning 90% of the time the entire method will be Jitted away - as per the typeof
checks in System.Numerics.Vectors