Instance Method インスタンスメソッド

date(_:matchesComponents:)

Returns whether a given date matches all of the given date components. 与えられた日付がその与えられた日付構成要素の全てと合致するかどうかを返します。

Declaration 宣言

func date(_ date: Date, 
matchesComponents components: DateComponents) -> Bool

Parameters パラメータ

date

The date for which to perform the calculation. それに対して計算を実行することになる日付。

comps

The date components to match. 照合する日付構成要素。

Return Value 戻り値

true if the given date matches the given components, otherwise false. 与えられた日付がこの与えられた構成要素と合致するならばtrue、そうでなければfalse

Discussion 議論

This method is useful for determining whether dates calculated by methods like nextDate(after:matching:value:options:) or enumerateDates(startingAfter:matching:options:using:) are exact, or required an adjustment due to a nonexistent time.

See Also 参照

Extracting Components 構成要素の抽出

Related Documentation 関連文書