Simulated any/interface{} type in Haxe. Made up of an Any value and a Reflect._Type The type information is filled in using stdgo.Go.toInterface at macro compile time.

This allows go2hx to have stronger reflection support then normal Haxe reflection. This is required because of the reflect stdlib

Static methods

@:op(A == B)staticequals(a:AnyInterface, b:AnyInterface):Bool

@:op(A != b)staticnotEquals(a:AnyInterface, b:AnyInterface):Bool

Constructor

new(value:Any, type:_Type)

Variables

@:value(false)__nil__:Bool = false

value:Any

Methods