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: IntMap.class.php
<?php // Generated by Haxe 3.4.7 class haxe_ds_IntMap implements haxe_IMap, IteratorAggregate{ public function __construct() { if(!php_Boot::$skip_constructor) { $this->h = array(); }} public $h; public function set($key, $value) { $this->h[$key] = $value; } public function get($key) { if(array_key_exists($key, $this->h)) { return $this->h[$key]; } else { return null; } } public function keys() { return new _hx_array_iterator(array_keys($this->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.IntMap'; } }