<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/str, branch master</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=master</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2013-11-03T12:49:01+00:00</updated>
<entry>
<title>Rename files to match current recommendations.</title>
<updated>2013-11-03T12:49:01+00:00</updated>
<author>
<name>Chris Morgan</name>
<email>me@chrismorgan.info</email>
</author>
<published>2013-10-29T06:22:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0369a41f0e668eda5622055253b91dbb5254f0b4'/>
<id>urn:sha1:0369a41f0e668eda5622055253b91dbb5254f0b4</id>
<content type='text'>
New standards have arisen in recent months, mostly for the use of
rustpkg, but the main Rust codebase has not been altered to match these
new specifications. This changeset rectifies most of these issues.

- Renamed the crate source files `src/libX/X.rs` to `lib.rs`, for
  consistency with current styles; this affects extra, rustc, rustdoc,
  rustpkg, rustuv, std, syntax.

- Renamed `X/X.rs` to `X/mod.rs,` as is now recommended style, for
  `std::num` and `std::terminfo`.

- Shifted `src/libstd/str/ascii.rs` out of the otherwise unused `str`
  directory, to be consistent with its import path of `std::ascii`;
  libstd is flat at present so it's more appropriate thus.

While this removes some `#[path = "..."]` directives, it does not remove
all of them, and leaves certain other inconsistencies, such as `std::u8`
et al. which are actually stored in `src/libstd/num/` (one subdirectory
down). No quorum has been reached on this issue, so I felt it best to
leave them all alone at present. #9208 deals with the possibility of
making libstd more hierarchical (such as changing the crate to match the
current filesystem structure, which would make the module path
`std::num::u8`).

There is one thing remaining in which this repository is not
rustpkg-compliant: rustpkg would have `src/std/` et al. rather than
`src/libstd/` et al. I have not endeavoured to change that at this point
as it would guarantee prompt bitrot and confusion. A change of that
magnitude needs to be discussed first.
</content>
</entry>
<entry>
<title>Some work on std::ascii: Marked unsafe function unsafe, added moving implementations</title>
<updated>2013-09-09T13:07:22+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2013-09-08T23:45:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3a3934244c53cfe3024431cec934b2e2901d50d0'/>
<id>urn:sha1:3a3934244c53cfe3024431cec934b2e2901d50d0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rename `std::iterator` to `std::iter`</title>
<updated>2013-09-09T07:21:46+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-09-08T15:01:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6919cf5fe14701621437fcb57f3a0c38fb394c65'/>
<id>urn:sha1:6919cf5fe14701621437fcb57f3a0c38fb394c65</id>
<content type='text'>
The trait will keep the `Iterator` naming, but a more concise module
name makes using the free functions less verbose. The module will define
iterables in addition to iterators, as it deals with iteration in
general.
</content>
</entry>
<entry>
<title>stop treating char as an integer type</title>
<updated>2013-09-04T12:07:56+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-09-03T23:24:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=62a343452978f570454be38556839049aef7792b'/>
<id>urn:sha1:62a343452978f570454be38556839049aef7792b</id>
<content type='text'>
Closes #7609
</content>
</entry>
<entry>
<title>Added ToStr impl for char</title>
<updated>2013-09-04T01:19:52+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2013-09-04T01:04:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8d610e1d2d92238a17c6c7802e11f609f21815aa'/>
<id>urn:sha1:8d610e1d2d92238a17c6c7802e11f609f21815aa</id>
<content type='text'>
Changed ToStr impl for Ascii
</content>
</entry>
<entry>
<title>std::to_bytes: Delimit sequences &amp;[A] and ~str when hashing</title>
<updated>2013-08-18T16:39:47+00:00</updated>
<author>
<name>blake2-ppc</name>
<email>blake2-ppc</email>
</author>
<published>2013-08-15T03:23:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6066118b2988fee1b758d542cee18ffe7a84acab'/>
<id>urn:sha1:6066118b2988fee1b758d542cee18ffe7a84acab</id>
<content type='text'>
Address issue #5257, for example these values all had the same hash value:

	("aaa", "bbb", "ccc")
	("aaab", "bb", "ccc")
	("aaabbb", "", "ccc")

IterBytes for &amp;[A] now includes the length, before calling iter_bytes on
each element.

IterBytes for &amp;str is now terminated by a byte that does not appear in
UTF-8. This way only one more byte is processed when hashing strings.
</content>
</entry>
<entry>
<title>Methodyfied the string ascii extionsion functions</title>
<updated>2013-08-14T12:48:25+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2013-08-11T02:21:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a00becd0eb8c04dc7416a5f8a633b73c9080c65d'/>
<id>urn:sha1:a00becd0eb8c04dc7416a5f8a633b73c9080c65d</id>
<content type='text'>
Added into_owned() method for vectors
Added DoubleEnded Iterator impl to Option
Renamed nil.rs to unit.rs
</content>
</entry>
<entry>
<title>fix build with the new snapshot compiler</title>
<updated>2013-08-12T21:37:46+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-08-12T21:25:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0cb0ef2ca5e4c0694f12ff1ca7d0a59d789b795b'/>
<id>urn:sha1:0cb0ef2ca5e4c0694f12ff1ca7d0a59d789b795b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: merge Iterator and IteratorUtil</title>
<updated>2013-08-10T14:02:17+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-08-09T14:19:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4062b84f4a5926f1037535903b13b99b6806f490'/>
<id>urn:sha1:4062b84f4a5926f1037535903b13b99b6806f490</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing-nulls</title>
<updated>2013-08-09T02:27:03+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-08-09T02:27:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=56730c094cf95be58fb05b0e423673aca2a98b88'/>
<id>urn:sha1:56730c094cf95be58fb05b0e423673aca2a98b88</id>
<content type='text'>
</content>
</entry>
</feed>
