Loyc.Ecs.Parser.EcsParser.IsArrayType C# (CSharp) Method

IsArrayType() private method

private IsArrayType ( LNode type ) : bool
type LNode
return bool
		bool IsArrayType(LNode type)
		{
			// Detect an array type, which has the form #of(#[,], Type)
			return type.Calls(S.Of, 2) && S.IsArrayKeyword(type.Args[0].Name);
		}
	
EcsParser