view Main/jungle-main/store/impl/TreeNodeAttributes.cs @ 31:1466993c104c

byte[] to object Rewrite.
author Kazuma Takeda
date Fri, 20 Jan 2017 07:08:03 +0900
parents f7616084d3ab
children
line wrap: on
line source

using System.Collections.Generic;
namespace JungleDB {
	public interface TreeNodeAttributes : Attributes {
		Either<Error, TreeNode> delete(string key);
		Either<Error, TreeNode> put(string key, object value);
		// Either<Error, TreeNode> put<T> (string key, MultiAttributes<T> value);
		TreeMap<string, object> getAttributesAsRawMap();
		IEnumerator<string> getKeys();
	}
}