@@ -27,98 +27,98 @@ import XCTest
2727
2828
2929
30- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
30+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
3131@inlinable
3232public func KvAssertEqual< T : KvNumericallyEquatable > ( _ result: T , _ expected: T , _ message: @autoclosure ( ) -> String = " " ) {
3333 KvAssertEqual ( result, expected, by: T . isEqual ( _: to: ) , message ( ) )
3434}
3535
36- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
36+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
3737@inlinable
3838public func KvAssertEqual< T : KvNumericallyEquatable > ( _ result: T ? , _ expected: T ? , _ message: @autoclosure ( ) -> String = " " ) {
3939 KvAssertEqual ( result, expected, by: T . isEqual ( _: to: ) , message ( ) )
4040}
4141
4242
43- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
43+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
4444@inlinable
4545public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Vector2 , _ expected: Math . Vector2 , _ message: @autoclosure ( ) -> String = " " ) {
4646 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
4747}
4848
49- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
49+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
5050@inlinable
5151public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Vector2 ? , _ expected: Math . Vector2 ? , _ message: @autoclosure ( ) -> String = " " ) {
5252 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
5353}
5454
55- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
55+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
5656@inlinable
5757public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Vector3 , _ expected: Math . Vector3 , _ message: @autoclosure ( ) -> String = " " ) {
5858 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
5959}
6060
61- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
61+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
6262@inlinable
6363public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Vector3 ? , _ expected: Math . Vector3 ? , _ message: @autoclosure ( ) -> String = " " ) {
6464 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
6565}
6666
67- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
67+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
6868@inlinable
6969public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Vector4 , _ expected: Math . Vector4 , _ message: @autoclosure ( ) -> String = " " ) {
7070 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
7171}
7272
73- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
73+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
7474@inlinable
7575public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Vector4 ? , _ expected: Math . Vector4 ? , _ message: @autoclosure ( ) -> String = " " ) {
7676 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
7777}
7878
79- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
79+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
8080@inlinable
8181public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Quaternion , _ expected: Math . Quaternion , _ message: @autoclosure ( ) -> String = " " ) {
8282 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
8383}
8484
85- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
85+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
8686@inlinable
8787public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Quaternion ? , _ expected: Math . Quaternion ? , _ message: @autoclosure ( ) -> String = " " ) {
8888 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
8989}
9090
91- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
91+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
9292@inlinable
9393public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Matrix2x2 , _ expected: Math . Matrix2x2 , _ message: @autoclosure ( ) -> String = " " ) {
9494 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
9595}
9696
97- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
97+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
9898@inlinable
9999public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Matrix2x2 ? , _ expected: Math . Matrix2x2 ? , _ message: @autoclosure ( ) -> String = " " ) {
100100 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
101101}
102102
103- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
103+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
104104@inlinable
105105public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Matrix3x3 , _ expected: Math . Matrix3x3 , _ message: @autoclosure ( ) -> String = " " ) {
106106 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
107107}
108108
109- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
109+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
110110@inlinable
111111public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Matrix3x3 ? , _ expected: Math . Matrix3x3 ? , _ message: @autoclosure ( ) -> String = " " ) {
112112 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
113113}
114114
115- /// Invokes `` XCTFail``() when *result* and *expectation* are not numerically equal.
115+ /// Invokes `XCTFail` when *result* and *expectation* are not numerically equal.
116116@inlinable
117117public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Matrix4x4 , _ expected: Math . Matrix4x4 , _ message: @autoclosure ( ) -> String = " " ) {
118118 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
119119}
120120
121- /// Invokes `` XCTFail``() when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
121+ /// Invokes `XCTFail` when *result* and *expectation* are not both `nil` or *result* and *expectation* are not numerically equal.
122122@inlinable
123123public func KvAssertEqual< Math : KvMathScope > ( _ math: Math . Type , _ result: Math . Matrix4x4 ? , _ expected: Math . Matrix4x4 ? , _ message: @autoclosure ( ) -> String = " " ) {
124124 KvAssertEqual ( result, expected, by: Math . isEqual ( _: _: ) , message ( ) )
0 commit comments