BaseMath
BaseMath copied to clipboard
Basic math functions for float and double in Swift
Not sure if I'm doing something wrong or things just haven't been updated in a while, but when I try to use BaseMath in an Xcode project (toolchain 11.3.1), BaseMath...
If you use map(+) you should also use map(abs) 🙂
I ran into a problem while working with sum(...) in a separate module that depend on this one. I found that the base address returned by tempStore is different than...
Must be something basic I am missing. Here's my Package.swift: import PackageDescription let package = Package( name: "TestBasemath", dependencies: [ .package(url: "https://github.com/jph00/BaseMath.git", from: "1.0.0"), ], targets: [ .target( name: "TestBasemath",...
I realized when investigating method chaining (e.g. sub_) in my other issue, a significant amount of time is spent in instantiating Array that contains 0, and very often, they may...
Trying to motivate the case for method chaining for the "underscore" operations. I noticed there are a whole set of operations that end with underscore. I think I have seen...
I couldn't seem to find the protocol and its extension implementation of neg(...) for FloatVector. This would allow me to do this: let z = exp(-x) And internally apply a...
This may not be urgent at all. But it may come up. What kind of license is this project released under? I assume it is open-source broadly speaking, ;-). Also,...