forked from hashicorp/terraform-plugin-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression_step_element_key_int_exact.go
47 lines (36 loc) · 1.38 KB
/
expression_step_element_key_int_exact.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
36
37
38
39
40
41
42
43
44
45
46
47
package path
import (
"fmt"
)
// Ensure ExpressionStepElementKeyIntExact satisfies the ExpressionStep
// interface.
var _ ExpressionStep = ExpressionStepElementKeyIntExact(0)
// ExpressionStepElementKeyIntExact is an attribute path expression for an exact integer
// element key match within a list. List indexing starts at 0.
type ExpressionStepElementKeyIntExact int64
// Equal returns true if the given ExpressionStep is a
// ExpressionStepElementKeyIntExact and the integer element key is equivalent.
func (s ExpressionStepElementKeyIntExact) Equal(o ExpressionStep) bool {
other, ok := o.(ExpressionStepElementKeyIntExact)
if !ok {
return false
}
return int64(s) == int64(other)
}
// Matches returns true if the given PathStep is fulfilled by the
// ExpressionStepElementKeyIntExact condition.
func (s ExpressionStepElementKeyIntExact) Matches(pathStep PathStep) bool {
pathStepElementKeyInt, ok := pathStep.(PathStepElementKeyInt)
if !ok {
return false
}
return int64(s) == int64(pathStepElementKeyInt)
}
// 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 ExpressionStepElementKeyIntExact) String() string {
return fmt.Sprintf("[%d]", s)
}
// unexported satisfies the Step interface.
func (s ExpressionStepElementKeyIntExact) unexported() {}