AnyRenderInfo
struct AnyRenderInfo
extension AnyRenderInfo : Equatable, Sendable
-
Declaration
Swift
let value: (any NimbusRenderInfo)
-
Declaration
Swift
init<T>(_ value: T) where T : NimbusRenderInfo
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: AnyRenderInfo, rhs: AnyRenderInfo) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.
-
Returns a Boolean value indicating whether two values are not equal.
Inequality is the inverse of equality. For any values
a
andb
,a != b
implies thata == b
isfalse
.This is the default implementation of the not-equal-to operator (
!=
) for any type that conforms toEquatable
.Declaration
Swift
static func != (lhs: Self, rhs: Self) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.