Working through mutation designs.

trying out some sketches to get the APIs correct.
This commit is contained in:
Dave Shanley
2023-03-01 11:29:03 -05:00
parent 69d99c7046
commit 441068174c
16 changed files with 416 additions and 40 deletions

View File

@@ -43,6 +43,7 @@ type HasExtensions[T any] interface {
type HasValue[T any] interface {
GetValue() T
GetValueNode() *yaml.Node
IsEmpty() bool
*T
}