Address4.isMulticast

Determines whether this address' destination is a group of endpoints.

struct Address4
const @nogc nothrow pure @safe
bool
isMulticast
()

Return Value

Type: bool

$(D_KEYWORD true) if this is a multicast address, $(D_KEYWORD false) otherwise.

Examples

assert(address4("224.0.0.3").get.isMulticast());

See Also

$(D_PSYMBOL isUnicast).

Meta