C# Class Boo.Lang.Builtins

boo language builtin functions.
Afficher le fichier Open project: boo/boo-lang Class Usage Examples

Méthodes publiques

Méthode Description
array ( Type elementType, ICollection collection ) : Array
array ( Type elementType, IEnumerable enumerable ) : Array
array ( Type elementType, int length ) : Array
array ( IEnumerable enumerable ) : object[]
cat ( ) : IEnumerable
enumerate ( object enumerable ) : IEnumerable
gets ( ) : string
iterator ( object enumerable ) : IEnumerable
join ( IEnumerable enumerable ) : string
join ( IEnumerable enumerable, char separator ) : string
join ( IEnumerable enumerable, string separator ) : string
map ( object enumerable, ICallable function ) : IEnumerable
matrix ( Type elementType ) : Array
print ( object o ) : void
prompt ( string message ) : string
range ( int max ) : IEnumerable
range ( int begin, int end ) : IEnumerable
range ( int begin, int end, int step ) : IEnumerable
reversed ( object enumerable ) : IEnumerable
shell ( string filename, string arguments ) : string
shellm ( string filename ) : string

Execute the specified MANAGED application in a new AppDomain. The base directory for the new application domain will be set to directory containing filename (Path.GetDirectoryName(Path.GetFullPath(filename))).

shellp ( string filename, string arguments ) : System.Diagnostics.Process
zip ( ) : ZipEnumerator

Private Methods

Méthode Description
GetEnumerator ( object enumerable ) : IEnumerator

Method Details

array() public static méthode

public static array ( Type elementType, ICollection collection ) : Array
elementType System.Type
collection ICollection
Résultat System.Array

array() public static méthode

public static array ( Type elementType, IEnumerable enumerable ) : Array
elementType System.Type
enumerable IEnumerable
Résultat System.Array

array() public static méthode

public static array ( Type elementType, int length ) : Array
elementType System.Type
length int
Résultat System.Array

array() public static méthode

public static array ( IEnumerable enumerable ) : object[]
enumerable IEnumerable
Résultat object[]

cat() public static méthode

public static cat ( ) : IEnumerable
Résultat IEnumerable

enumerate() public static méthode

public static enumerate ( object enumerable ) : IEnumerable
enumerable object
Résultat IEnumerable

gets() public static méthode

public static gets ( ) : string
Résultat string

iterator() public static méthode

public static iterator ( object enumerable ) : IEnumerable
enumerable object
Résultat IEnumerable

join() public static méthode

public static join ( IEnumerable enumerable ) : string
enumerable IEnumerable
Résultat string

join() public static méthode

public static join ( IEnumerable enumerable, char separator ) : string
enumerable IEnumerable
separator char
Résultat string

join() public static méthode

public static join ( IEnumerable enumerable, string separator ) : string
enumerable IEnumerable
separator string
Résultat string

map() public static méthode

public static map ( object enumerable, ICallable function ) : IEnumerable
enumerable object
function ICallable
Résultat IEnumerable

matrix() public static méthode

public static matrix ( Type elementType ) : Array
elementType System.Type
Résultat System.Array

print() public static méthode

public static print ( object o ) : void
o object
Résultat void

prompt() public static méthode

public static prompt ( string message ) : string
message string
Résultat string

range() public static méthode

public static range ( int max ) : IEnumerable
max int
Résultat IEnumerable

range() public static méthode

public static range ( int begin, int end ) : IEnumerable
begin int
end int
Résultat IEnumerable

range() public static méthode

public static range ( int begin, int end, int step ) : IEnumerable
begin int
end int
step int
Résultat IEnumerable

reversed() public static méthode

public static reversed ( object enumerable ) : IEnumerable
enumerable object
Résultat IEnumerable

shell() public static méthode

public static shell ( string filename, string arguments ) : string
filename string
arguments string
Résultat string

shellm() public static méthode

Execute the specified MANAGED application in a new AppDomain. The base directory for the new application domain will be set to directory containing filename (Path.GetDirectoryName(Path.GetFullPath(filename))).
public static shellm ( string filename ) : string
filename string
Résultat string

shellp() public static méthode

public static shellp ( string filename, string arguments ) : System.Diagnostics.Process
filename string
arguments string
Résultat System.Diagnostics.Process

zip() public static méthode

public static zip ( ) : ZipEnumerator
Résultat ZipEnumerator