Address6.isMulticast

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

struct Address6
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(address6("ff00::").get.isMulticast());

See Also

$(D_PSYMBOL isUnicast).

Meta