mirror of
https://github.com/apple/swift-foundation.git
synced 2025-05-24 14:46:13 +08:00
Add the import for the Windows libc. This enables to finally build the `FoundationEssentials` module.
77 lines
2.1 KiB
Swift
77 lines
2.1 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2020-2023 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if !FOUNDATION_FRAMEWORK
|
|
|
|
#if canImport(Darwin)
|
|
import Darwin
|
|
#elseif canImport(Glibc)
|
|
import Glibc
|
|
#elseif canImport(ucrt)
|
|
import ucrt
|
|
#endif
|
|
|
|
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
|
|
public struct Decimal : Hashable, Codable, Equatable, CustomStringConvertible {
|
|
private let fake: Double
|
|
|
|
public var doubleValue: Double { self.fake }
|
|
public var description: String {
|
|
// Hack here to simulate real Decimal's behavior:
|
|
// If the value is an int, print as int
|
|
let isInteger = floor(self.fake) == self.fake
|
|
var result = self.fake.description
|
|
if isInteger, let intValue = result.split(separator: ".").first {
|
|
result = String(intValue)
|
|
}
|
|
return result
|
|
}
|
|
|
|
public init(_ double: Double) {
|
|
self.fake = double
|
|
}
|
|
|
|
public init(_ int: Int) {
|
|
self.fake = Double(int)
|
|
}
|
|
|
|
public init?(string: String) {
|
|
guard let value = Double(string) else {
|
|
return nil
|
|
}
|
|
self.fake = value
|
|
}
|
|
|
|
public init?<T>(exactly source: T) where T : BinaryInteger {
|
|
guard let value = Double(exactly: source) else {
|
|
return nil
|
|
}
|
|
self.fake = value
|
|
}
|
|
}
|
|
|
|
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
|
|
extension Decimal : ExpressibleByFloatLiteral {
|
|
public init(floatLiteral value: Double) {
|
|
self.init(value)
|
|
}
|
|
}
|
|
|
|
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
|
|
extension Decimal : ExpressibleByIntegerLiteral {
|
|
public init(integerLiteral value: Int) {
|
|
self.init(value)
|
|
}
|
|
}
|
|
|
|
#endif
|