unused files deleted

This commit is contained in:
Vladimir Enchev
2014-05-15 10:02:45 +03:00
parent 012a4c40be
commit fe5f30836c
3 changed files with 0 additions and 53 deletions

View File

@ -1,24 +0,0 @@
export class Collections {
public static stringArrayToStringSet(str: string[]): any {
var hashSet = new java.util.HashSet();
if ("undefined" != typeof str) {
for (var element in str) {
hashSet.add('' + str[element]);
}
}
return hashSet;
}
public static stringSetToStringArray(stringSet: any): string[] {
var arr = [];
if ("undefined" != typeof stringSet) {
var it = stringSet.iterator();
while (it.hasNext()) {
var element = '' + it.next();
arr.push(element);
}
}
return arr;
}
}

7
utils/utils.d.ts vendored
View File

@ -1,7 +0,0 @@
/**
* Timer functions.
*/
export declare function setTimeout(callback: Function, milliseconds?: number): number;
export declare function clearTimeout(id: number): void;
export declare function setInterval(callback: Function, milliseconds?: number): number;
export declare function clearInterval(id: number): void;

View File

@ -1,22 +0,0 @@
export class Collections {
public static jsArrayToNSArray(str: string[]): any {
var arr = new Foundation.NSMutableArray();
if ("undefined" != typeof str) {
for (var element in str) {
arr.addObject(str[element]);
}
}
return arr;
}
public static nsArrayToJSArray(a: any): string[] {
var arr = [];
if ("undefined" != typeof a) {
for (var i = 0; i < a.count(); i++) {
arr.push(a.objectAtIndex(i));
}
}
return arr;
}
}