WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
adaptive_images
/
v3.4.0
/
lib
/
geometrize
/
haxe
/
ds
/
Name
Action
..
IntMap.class.php
Edit
StringMap.class.php
Edit
Editing: StringMap.class.php
<?php // Generated by Haxe 3.4.7 class haxe_ds_StringMap implements haxe_IMap, IteratorAggregate{ public function __construct() { if(!php_Boot::$skip_constructor) { $this->h = array(); }} public $h; public function iterator() { return new _hx_array_iterator(array_values($this->h)); } public function getIterator() { return $this->iterator(); } public function __call($m, $a) { if(isset($this->$m) && is_callable($this->$m)) return call_user_func_array($this->$m, $a); else if(isset($this->__dynamics[$m]) && is_callable($this->__dynamics[$m])) return call_user_func_array($this->__dynamics[$m], $a); else if('toString' == $m) return $this->__toString(); else throw new HException('Unable to call <'.$m.'>'); } function __toString() { return 'haxe.ds.StringMap'; } }