mgriebling

Results 19 comments of mgriebling

Still have the same issue and the libsmb2 libraries are showing up in the lib directory.

Gradians are a metric version of radians. Probably not used much but handheld calculators always had a "DRG" key which supported degrees, radians, and gradians. Noticed, that Apple's calculator does...

I have an implementation of this including Decimal32, Decimal64, and Decimal128. Decimal32 is mostly tested but the other implementations require testing. This is a pure Swift implementation based on the...

Easy solution, just fork it in your own github account and you'll always have a link. Generally do agree though, searching for the Digital project is impossible, unless you add...

Any progress here? I'm running into a similar issue in trying to integrate MacMenuBar with a pure SwiftUI App. For example my @main code looks like this: ```swift @main struct...

> These tests now all pass with #261 pull request.

The issue below (from @LiarPrincess) appears fixed in my latest updates (see pull request #261) ``` swift // -9223372036854775808 = Int64.min, obviously '-Int64.min' overflows let int: Int64 = -9223372036854775808 let...

All remaining issues (at least the published ones) appear to have been fixed with the pull request #262. There were some problems with division/modulo signs, initialization, corner-case fixes.

Noticed poor performance in the BigInt initializer from a string as well. See pull request # 261.

> > * in `public func toString(radix: Int, uppercase: Bool) -> String` > What if `UInt.bitWidth = 64` and `radix = 8`? > Then `bitsPerChar = 3`, so a single...