Skip to content

Releases: bangjunyoung/FSharpCoreMissingParts

v1.1.0

Choose a tag to compare

@bangjunyoung bangjunyoung released this 10 Mar 03:24

What's New in v1.1.0

  • New Span module with two functions:
    • stackalloc: Allocates a block of memory on the stack and returns it as a span. The memory is automatically freed when the method returns.
    • toReadOnlySpan: Converts a Span<'T> to a ReadOnlySpan<'T>, allowing you to work with the data in a read-only context without copying. The resulting read-only span shares the same underlying memory as the input span, so changes to the input span will be reflected in the output span.

Full Changelog: v1.0.1...v1.1.0

v1.0.1

Choose a tag to compare

@bangjunyoung bangjunyoung released this 20 Feb 11:50

FSharpCoreMissingParts 1.0.1 is a hotfix release specifically to resolve the NU1605 warning, with no other improvements or fixes included.

v1.0.0

Choose a tag to compare

@bangjunyoung bangjunyoung released this 19 Feb 09:54