view Main/jungle-main/store/impl/TreeNodeAttributes.cs @ 41:bd44baa491a9 default tip

add TestJungleCore.cs
author Kazuma Takeda
date Thu, 23 Feb 2017 17:19:55 +0900
parents 1466993c104c
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();
	}
}