Convert all kind bounds to camel case. Remove send, owned keywords.

This commit is contained in:
Brian Anderson
2012-09-07 14:52:28 -07:00
parent 07fe5611ad
commit 3bd1f32cd9
167 changed files with 613 additions and 622 deletions

View File

@@ -210,7 +210,7 @@ impl<A> DVec<A> {
}
}
impl<A: copy> DVec<A> {
impl<A: Copy> DVec<A> {
/**
* Append all elements of a vector to the end of the list
*
@@ -327,7 +327,7 @@ impl<A: copy> DVec<A> {
}
}
impl<A:copy> DVec<A>: Index<uint,A> {
impl<A:Copy> DVec<A>: Index<uint,A> {
pure fn index(&&idx: uint) -> A {
self.get_elt(idx)
}