Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,12 @@ internal bool TriggersAction(InputAction action)
///
/// Note that all comparisons are case-insensitive.
///
/// This method doesn't test bindings for equality. A binding may not match itself if one of
/// its mask properties contains a value that doesn't match as a filter. For example, a binding
/// with <see cref="groups"/> set to an empty string has a group filter but no non-empty group
/// to match against. To compare bindings for equivalence, use <see cref="Equals(InputBinding)"/>
/// or <see cref="operator=="/>.
///
/// <example>
/// <code>
/// // Create a couple bindings which we can test against.
Expand Down Expand Up @@ -837,6 +843,7 @@ internal bool TriggersAction(InputAction action)
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="Equals(InputBinding)"/>
public bool Matches(InputBinding binding)
{
return Matches(ref binding);
Expand Down
Loading