次の方法で共有


Map.exists<'Key,'T> 関数 (F#)

指定された述語がマップ内のいずれかのバインディングについて true を返す場合に true を返します。

名前空間/モジュール パス: Microsoft.FSharp.Collections.Map

アセンブリ: FSharp.Core (FSharp.Core.dll 内)

// Signature:
Map.exists : ('Key -> 'T -> bool) -> Map<'Key,'T> -> bool (requires comparison)

// Usage:
Map.exists predicate table

パラメーター

  • predicate
    型: 'Key -> 'T -> bool

    入力要素をテストする関数。

  • table
    型: Map<'Key,'T>

    入力マップ。

戻り値

述語がキーと値のいずれかのペアについて true を返す場合は true。

解説

この関数は、コンパイルされたアセンブリでは Exists という名前です。 F# 以外の言語から、またはリフレクションを使用してこの関数にアクセスする場合は、この名前を使用します。

プラットフォーム

Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

バージョン情報

F# ランタイム

サポート対象: 2.0、4.0

Silverlight

サポート: 3

参照

その他の技術情報

Collections.Map モジュール (F#)

Microsoft.FSharp.Collections 名前空間 (F#)