rspec/rules/S2197/swift/rule.adoc

27 lines
347 B
Plaintext
Raw Normal View History

2020-06-30 12:48:07 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
func isOdd(x:Int) -> Bool {
return x % 2 == 1 // Noncompliant; if x is negative, x % 2 == -1
}
----
== Compliant Solution
----
func isOdd(x:Int) -> Bool {
return x % 2 != 0
}
----
or
2020-06-30 12:48:07 +02:00
----
func isOdd(x:Int) -> Bool {
return abs(x % 2) == 1
}
----
include::../see.adoc[]