Simple interface for simple wrappers for valued working memory elements in SML. These wrappers are slightly more convenient to work with than the default SML valued elements. @author Jonathan Voigt
| 9 | * |
| 10 | */ |
| 11 | public interface Wme |
| 12 | { |
| 13 | /** |
| 14 | * Remove the working memory element from memory. It is legal to call |
| 15 | * update() later to set a new value. |
| 16 | */ |
| 17 | public void destroy(); |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected