Skip to content

Tags: dan-zheng/swift-numerics

Tags

0.0.5

Toggle 0.0.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#97 from stephentyrone/prefix-modules

Enable name lookup for modules by suffixing `Module` when needed to break ambiguity.

In particular, the following module renames are applied:

- Real -> RealModule
- Complex -> ComplexModule

This is a source-breaking change, if you currently directly import these modules. (sorry!)
The fix is to either import Numerics instead, or to use the new, suffixed, names. The good news is that fixing this should require only a straightforward search-and-replace for anyone affected.

0.0.4

Toggle 0.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#96 from benrimmington/complex-unkeyed

[Complex] Encode and decode using unkeyedContainer

0.0.3

Toggle 0.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#83 from stephentyrone/pown

Initial pass at pow(Self, Int) for Float and Double

0.0.2

Toggle 0.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#78 from stephentyrone/lengthSquared

Rename unsafeLengthSquared -> lengthSquared

0.0.1

Toggle 0.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#74 from ole/delete-alltests

Delete RealTests.allTests

0.0.0

Toggle 0.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#69 from stephentyrone/cbrt

Defer to libm cbrt for root(x,3).