Operator
*=(_:_:)
Multiplies two futures and stores the result in the left-hand-side variable
static func *= (lhs: inout EventLoopFuture<Value>, rhs: EventLoopFuture<Value>)
See Also
EventLoopFuture operators
static func + (EventLoopFuture<Value>, EventLoopFuture<Value>) -> EventLoopFuture<Value>Adds two futures and produces their sumstatic func + <T>(EventLoopFuture<Value>, EventLoopFuture<Value>) -> EventLoopFuture<Value>Adds two futures and produces their sumstatic func += (inout EventLoopFuture<Value>, EventLoopFuture<Value>)Adds two futures and stores the result in the left-hand-side variablestatic func += <T>(inout EventLoopFuture<Value>, EventLoopFuture<Value>)Adds two futures and stores the result in the left-hand-side variablestatic func * (EventLoopFuture<Value>, EventLoopFuture<Value>) -> EventLoopFuture<Value>Multiplies two futures and produces their productstatic func % (EventLoopFuture<Value>, EventLoopFuture<Value>) -> EventLoopFuture<Value>Returns the remainder of dividing the first future by the secondstatic func %= (inout EventLoopFuture<Value>, EventLoopFuture<Value>)Divides the first future by the second and stores the remainder in the left-hand-side variablestatic func < (EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>) -> EventLoopFuture<Bool>Returns a Boolean value indicating whether the value of the first argument is less than that of the second argumentstatic func <= (EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>) -> EventLoopFuture<Bool>Returns a Boolean value indicating whether the value of the first argument is less than or equal to that of the second argumentstatic func > (EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>) -> EventLoopFuture<Bool>Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argumentstatic func >= (EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>) -> EventLoopFuture<Bool>Returns a Boolean value indicating whether the value of the first argument is greater than or equal to that of the second argumentstatic func << (EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>) -> EventLoopFuture<Value>Returns the result of shifting a future’s binary representation the specified number of digits to the leftstatic func <<= (inout EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>)Stores the result of shifting a future’s binary representation the specified number of digits to the left in the left-hand-side variablestatic func >> (EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>) -> EventLoopFuture<Value>Returns the result of shifting a future’s binary representation the specified number of digits to the rightstatic func >>= (inout EventLoopFuture<Value>, EventLoopFuture<some BinaryInteger>)Stores the result of shifting a future’s binary representation the specified number of digits to the right in the left-hand-side variable