haXe API Documentation
Back | Index
class cs.Lib
Available in cs
Platform-specific C# Library. Provides some platform-specific functions for the C# target, such as conversion from haxe types to native types and vice-versa.
static function applyCultureChanges() : Void
Changes the current culture settings to allow a consistent cross-target behavior. Currently the only change made is in regard to the decimal separator, which is always set to "."
static function array<T>(native : NativeArray<T>) : Array<T>
Returns a Haxe Array of a native Array. It won't copy the contents of the native array, so unless any operation triggers an array resize, all changes made to the Haxe array will affect the native array argument.
static function arrayAlloc<T>(size : Int) : Array<T>
Allocates a new Haxe Array with a predetermined size
static inline function fromNativeType(t : cs.system.Type) : Class<Dynamic>

Returns a Class<> equivalent to the native System.Type type.

Currently Haxe's Class<> is equivalent to System.Type, but this is an implementation detail. This may change in the future, so use this function whenever you need to perform such conversion.

static function nativeArray<T>(arr : Array<T>, equalLengthRequired : Bool) : NativeArray<T>

Returns a native array from the supplied Array. This native array is unsafe to be written on, as it may or may not be linked to the actual Array implementation.

If equalLengthRequired is true, the result might be a copy of an array with the correct size.

static function nativeType(obj : Dynamic) : cs.system.Type
Gets the native System.Type from the supplied object. Will throw an exception in case of null being passed.
static function revertDefaultCulture() : Void
Reverts the culture changes to the default settings.
static inline function toNativeType(cl : Class<Dynamic>) : cs.system.Type

Returns a System.Type equivalent to the Haxe Class<> type.

Currently Haxe's Class<> is equivalent to System.Type, but this is an implementation detail. This may change in the future, so use this function whenever you need to perform such conversion.

Back | Index