view src/luan/LuanCloneable.java @ 1562:b89212fd04b5

remove table.luan
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 08 Nov 2020 16:50:59 -0700
parents e1a13e707bf3
children
line wrap: on
line source

package luan;


public interface LuanCloneable {
	public LuanCloneable shallowClone();
	public void deepenClone(LuanCloneable clone,LuanCloner cloner);
	public void makeImmutable(LuanImmutabler immutabler) throws LuanException;
}