view Main/jungle-main/store/impl/TreeNodeAttributes.cs @ 29:f7616084d3ab

Continue to put on the created path.
author Kazuma Takeda
date Wed, 18 Jan 2017 21:02:24 +0900
parents 1f99e150f336
children 1466993c104c
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, byte[] value);
		// Either<Error, TreeNode> put<T> (string key, MultiAttributes<T> value);
		TreeMap<string, byte[]> getAttributesAsRawMap();
		IEnumerator<string> getKeys();
	}
}