-
Notifications
You must be signed in to change notification settings - Fork 10.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[stdlib] Implement SE-0233 AdditiveArithmetic #20422
Changes from 4 commits
44c2f77
bc8b623
57facc8
394be18
b788e55
da50193
4e2147e
c026851
aeadc14
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,10 +23,89 @@ extension ExpressibleByIntegerLiteral | |
} | ||
} | ||
|
||
//===----------------------------------------------------------------------===// | ||
//===--- AdditiveArithmetic -----------------------------------------------===// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// FIXME: Add doc comment. | ||
public protocol AdditiveArithmetic : Equatable { | ||
/// The zero value. | ||
/// | ||
/// - Note: Zero is the identity element for addition; for any value, | ||
/// `x + .zero == x` and `.zero + x == x`. | ||
static var zero: Self { get } | ||
|
||
/// Adds two values and produces their sum. | ||
/// | ||
/// The addition operator (`+`) calculates the sum of its two arguments. For | ||
/// example: | ||
/// | ||
/// 1 + 2 // 3 | ||
/// -10 + 15 // 5 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Examples involving the unary negative operator should probably be removed from the documentation for this protocol. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, but it was originally on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right. @xwu, can you open a SR bug for this (since we would want to consider it on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
/// -15 + -5 // -20 | ||
/// 21.5 + 3.25 // 24.75 | ||
/// | ||
/// You cannot use `+` with arguments of different types. To add values of | ||
/// different types, convert one of the values to the other value's type. | ||
/// | ||
/// let x: Int8 = 21 | ||
/// let y: Int = 1000000 | ||
/// Int(x) + y // 1000021 | ||
/// | ||
/// - Parameters: | ||
/// - lhs: The first value to add. | ||
/// - rhs: The second value to add. | ||
static func +(lhs: Self, rhs: Self) -> Self | ||
|
||
/// Adds two values and stores the result in the left-hand-side variable. | ||
/// | ||
/// - Parameters: | ||
/// - lhs: The first value to add. | ||
/// - rhs: The second value to add. | ||
static func +=(lhs: inout Self, rhs: Self) | ||
|
||
/// Subtracts one value from another and produces their difference. | ||
/// | ||
/// The subtraction operator (`-`) calculates the difference of its two | ||
/// arguments. For example: | ||
/// | ||
/// 8 - 3 // 5 | ||
/// -10 - 5 // -15 | ||
/// 100 - -5 // 105 | ||
/// 10.5 - 100.0 // -89.5 | ||
/// | ||
/// You cannot use `-` with arguments of different types. To subtract values | ||
/// of different types, convert one of the values to the other value's type. | ||
/// | ||
/// let x: UInt8 = 21 | ||
/// let y: UInt = 1000000 | ||
/// y - UInt(x) // 999979 | ||
/// | ||
/// - Parameters: | ||
/// - lhs: A numeric value. | ||
/// - rhs: The value to subtract from `lhs`. | ||
static func -(lhs: Self, rhs: Self) -> Self | ||
|
||
/// Subtracts the second value from the first and stores the difference in the | ||
/// left-hand-side variable. | ||
/// | ||
/// - Parameters: | ||
/// - lhs: A numeric value. | ||
/// - rhs: The value to subtract from `lhs`. | ||
static func -=(lhs: inout Self, rhs: Self) | ||
} | ||
|
||
public extension AdditiveArithmetic where Self : ExpressibleByIntegerLiteral { | ||
static var zero: Self { | ||
return 0 | ||
} | ||
} | ||
|
||
//===----------------------------------------------------------------------===// | ||
//===--- Numeric ----------------------------------------------------------===// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// FIXME: Update comment based on the `AdditiveArithmetic` change. | ||
/// Declares methods backing binary arithmetic operators--such as `+`, `-` and | ||
/// `*`--and their mutating counterparts. | ||
/// | ||
|
@@ -61,7 +140,7 @@ extension ExpressibleByIntegerLiteral | |
/// the required mutating methods. Extensions to `Numeric` provide default | ||
/// implementations for the protocol's nonmutating methods based on the | ||
/// mutating variants. | ||
public protocol Numeric : Equatable, ExpressibleByIntegerLiteral { | ||
public protocol Numeric : AdditiveArithmetic, ExpressibleByIntegerLiteral { | ||
/// Creates a new instance from the given integer, if it can be represented | ||
/// exactly. | ||
/// | ||
|
@@ -100,65 +179,6 @@ public protocol Numeric : Equatable, ExpressibleByIntegerLiteral { | |
/// instead of the `magnitude` property is encouraged. | ||
var magnitude: Magnitude { get } | ||
|
||
/// Adds two values and produces their sum. | ||
/// | ||
/// The addition operator (`+`) calculates the sum of its two arguments. For | ||
/// example: | ||
/// | ||
/// 1 + 2 // 3 | ||
/// -10 + 15 // 5 | ||
/// -15 + -5 // -20 | ||
/// 21.5 + 3.25 // 24.75 | ||
/// | ||
/// You cannot use `+` with arguments of different types. To add values of | ||
/// different types, convert one of the values to the other value's type. | ||
/// | ||
/// let x: Int8 = 21 | ||
/// let y: Int = 1000000 | ||
/// Int(x) + y // 1000021 | ||
/// | ||
/// - Parameters: | ||
/// - lhs: The first value to add. | ||
/// - rhs: The second value to add. | ||
static func +(lhs: Self, rhs: Self) -> Self | ||
|
||
/// Adds two values and stores the result in the left-hand-side variable. | ||
/// | ||
/// - Parameters: | ||
/// - lhs: The first value to add. | ||
/// - rhs: The second value to add. | ||
static func +=(lhs: inout Self, rhs: Self) | ||
|
||
/// Subtracts one value from another and produces their difference. | ||
/// | ||
/// The subtraction operator (`-`) calculates the difference of its two | ||
/// arguments. For example: | ||
/// | ||
/// 8 - 3 // 5 | ||
/// -10 - 5 // -15 | ||
/// 100 - -5 // 105 | ||
/// 10.5 - 100.0 // -89.5 | ||
/// | ||
/// You cannot use `-` with arguments of different types. To subtract values | ||
/// of different types, convert one of the values to the other value's type. | ||
/// | ||
/// let x: UInt8 = 21 | ||
/// let y: UInt = 1000000 | ||
/// y - UInt(x) // 999979 | ||
/// | ||
/// - Parameters: | ||
/// - lhs: A numeric value. | ||
/// - rhs: The value to subtract from `lhs`. | ||
static func -(lhs: Self, rhs: Self) -> Self | ||
|
||
/// Subtracts the second value from the first and stores the difference in the | ||
/// left-hand-side variable. | ||
/// | ||
/// - Parameters: | ||
/// - lhs: A numeric value. | ||
/// - rhs: The value to subtract from `lhs`. | ||
static func -=(lhs: inout Self, rhs: Self) | ||
|
||
/// Multiplies two values and produces their product. | ||
/// | ||
/// The multiplication operator (`*`) calculates the product of its two | ||
|
@@ -327,7 +347,7 @@ public func abs<T : SignedNumeric & Comparable>(_ x: T) -> T { | |
return x < (0 as T) ? -x : x | ||
} | ||
|
||
extension Numeric { | ||
extension AdditiveArithmetic { | ||
/// Returns the given number unchanged. | ||
/// | ||
/// You can use the unary plus operator (`+`) to provide symmetry in your | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we expand this comment with a note that
zero
is the name of the additive identity? Something like/// zero is the identity element for addition; for any value x,
x + .zero == x
and.zero + x == x
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. There's still no doc comment on the protocol itself, but writing good doc comments would take time :) I added
TODO
's for that.