You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
403 B
JavaScript
15 lines
403 B
JavaScript
10 years ago
|
/**
|
||
|
* The Phi Technology LLC, Steve L. Nyemba <steve@the-phi.com>
|
||
|
* Javascript-x
|
||
|
*
|
||
|
* This is a utiliy class that is used across several namespaces because it implements handy utility functionalities and design patterns
|
||
|
*/
|
||
|
if(!jx){
|
||
|
var jx = {}
|
||
|
}
|
||
|
jx.utils = {} ;
|
||
|
jx.utils.patterns = {}
|
||
|
jx.utils.patterns.visitor = function(list,pointer){}
|
||
|
jx.utils.patterns.iterator = function(list,ipointer){}
|
||
|
|