io.IoList.createObject C# (CSharp) Method

createObject() public static method

public static createObject ( IoState state ) : IoList
state IoState
return IoList
        public static new IoList createObject(IoState state)
        {
            IoList m = new IoList();
            return m.clone(state) as IoList;
        }

Usage Example

Example #1
0
File: IoMessage.cs Project: ypyf/io
        public static IoObject slotArguments(IoObject target, IoObject locals, IoObject message)
        {
            IoMessage self = target as IoMessage;
            IoList    list = IoList.createObject(target.state);

            foreach (IoObject o in self.args)
            {
                list.append(o);
            }
            return(list);
        }
All Usage Examples Of io.IoList::createObject