Function 関数

protocol_conformsToProtocol(_:_:)

Returns a Boolean value that indicates whether one protocol conforms to another protocol. あるブール値を返します、それは一方のプロトコルが別のプロトコルに準拠するかどうかを指し示します。

Declaration 宣言

func protocol_conformsToProtocol(_ proto: Protocol?, 
                               _ other: Protocol?) -> Bool

Parameters パラメータ

proto

A protocol. あるプロトコル。

other

A protocol. あるプロトコル。

Return Value 戻り値

true if proto conforms to other, otherwise false.

Discussion 解説

One protocol can incorporate other protocols using the same syntax that classes use to adopt a protocol:


@protocol ProtocolName < protocol list >

All the protocols listed between angle brackets are considered part of the ProtocolName protocol.

See Also 参照

Working with Protocols プロトコルを扱う