forked from hashicorp/terraform-plugin-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression_step_element_key_int_any.go
35 lines (27 loc) · 1.12 KB
/
expression_step_element_key_int_any.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package path
// Ensure ExpressionStepElementKeyIntAny satisfies the ExpressionStep
// interface.
var _ ExpressionStep = ExpressionStepElementKeyIntAny{}
// ExpressionStepElementKeyIntAny is an attribute path expression for a matching any
// integer element key within a list.
type ExpressionStepElementKeyIntAny struct{}
// Equal returns true if the given ExpressionStep is a
// ExpressionStepElementKeyIntAny.
func (s ExpressionStepElementKeyIntAny) Equal(o ExpressionStep) bool {
_, ok := o.(ExpressionStepElementKeyIntAny)
return ok
}
// Matches returns true if the given PathStep is fulfilled by the
// ExpressionStepElementKeyIntAny condition.
func (s ExpressionStepElementKeyIntAny) Matches(pathStep PathStep) bool {
_, ok := pathStep.(PathStepElementKeyInt)
return ok
}
// String returns the human-readable representation of the element key
// expression. It is intended for logging and error messages and is not
// protected by compatibility guarantees.
func (s ExpressionStepElementKeyIntAny) String() string {
return "[*]"
}
// unexported satisfies the Step interface.
func (s ExpressionStepElementKeyIntAny) unexported() {}