MatrixBerryCore
DiskBasedHashMapFactory.m
Go to the documentation of this file.
1 classdef DiskBasedHashMapFactory
2  methods
3  function obj=getInstance(varargin)
4  obj=mxberry.core.cont.DiskBasedHashMap(varargin{:});
5  end
6  end
7 
8 end