Skip to content

Instantly share code, notes, and snippets.

@ritalin
Created May 19, 2014 09:37
Show Gist options
  • Save ritalin/69f50f74f22fa93f849b to your computer and use it in GitHub Desktop.
Save ritalin/69f50f74f22fa93f849b to your computer and use it in GitHub Desktop.
// OK
IEnexArraycollection = interface(ICollection<TArray<integer>>)
function Op: TEnexExtOps<TArray<integer>>;
end;
// NG
IEnexArrayCollection<T> = interface(ICollection<TArray<T>>)
function Op: TEnexExtOps<TArray<T>>;
end;
@freeonterminate
Copy link

oh...コメントだと 空白消えちゃうのか…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment