public void RemoveFrom(IValueTransformable transformable) =>
 transformable.Remove(_transformation);
 public Transformable(PathDefinition path, IValueTransformable transformable)
 {
     _path          = path;
     _transformable = transformable;
 }
 public void ApplyTo(IValueTransformable transformable) =>
 transformable.Add(_transformation);