infix
operator
%= {
associativity
right
precedence
90
assignment
}
Declarations
Divides lhs
and rhs
and stores the remainder in lhs
, trapping in
case of arithmetic overflow (except in -Ounchecked builds).
Declaration
func
%=
<
T
:
_IntegerArithmeticType
>
(
inout
lhs
:
T
,
rhs
:
T
)
Declaration
func
%=(
inout
lhs
:
Double
,
rhs
:
Double
)