NimbusRendererType
struct NimbusRendererType
extension NimbusRendererType : Equatable, Hashable
-
Declaration
Swift
let network: String?
-
Declaration
Swift
let type: NimbusAuctionType?
-
Declaration
Swift
static func forNetwork(_ network: String) -> NimbusRendererType
-
Declaration
Swift
static func forAuctionType(_ type: NimbusAuctionType) -> NimbusRendererType
-
Declaration
Swift
static func forNetworkAndAuction(network: String, type: NimbusAuctionType) -> NimbusRendererType
-
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.