Is your feature request related to a problem? Please describe.
JCOBridge rc7 contains a great improvement in array management with a zero-copy memory based on JCOBridgeStream<T>; the feature, available around many methods managing native array types, returns a new object able to interact directly within the JVM memory and adds support for Span<T> and ReadOnlySpan<T>.
Describe the solution you'd like
Extends the methods reflected to support the new feature adding, side-by-side, to the current one new methods with Stream trailer which returns JCOBridgeStream<T>; since T has the unmanaged constraint, and internally the type is checked at runtime, the type on JVM shall be checked accordingly.
Describe alternatives you've considered
N/A
Additional context
N/A
Is your feature request related to a problem? Please describe.
JCOBridge rc7 contains a great improvement in array management with a zero-copy memory based on
JCOBridgeStream<T>; the feature, available around many methods managing native array types, returns a new object able to interact directly within the JVM memory and adds support forSpan<T>andReadOnlySpan<T>.Describe the solution you'd like
Extends the methods reflected to support the new feature adding, side-by-side, to the current one new methods with
Streamtrailer which returnsJCOBridgeStream<T>; sinceThas theunmanagedconstraint, and internally the type is checked at runtime, the type on JVM shall be checked accordingly.Describe alternatives you've considered
N/A
Additional context
N/A