MatrixBerryCore
IGenericBranchedStorage.m
Go to the documentation of this file.
1 classdef IGenericBranchedStorage<handle
2  methods
3  keyList=getKeyList(self)
4  [valueList,varargout]=get(self,keyList,varargin)
5  [isKeyVec,fullFileNameCVec]=isKey(self,keyList)
6  put(self,keyList,valueObjList,varargin)
7  remove(self,keyList)
8  removeAll(self)
9  end
10 end