<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/vec_ng.rs, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2014-03-20T08:25:32+00:00</updated>
<entry>
<title>rename std::vec_ng -&gt; std::vec</title>
<updated>2014-03-20T08:25:32+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2014-03-20T07:35:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=14f656d1a79fb36ce5435976dd33f57dd09cb9ce'/>
<id>urn:sha1:14f656d1a79fb36ce5435976dd33f57dd09cb9ce</id>
<content type='text'>
Closes #12771
</content>
</entry>
<entry>
<title>rename std::vec -&gt; std::slice</title>
<updated>2014-03-20T05:30:27+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2014-03-08T23:11:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ce620320a20baa1428e679c751b1b4a8d8556ca1'/>
<id>urn:sha1:ce620320a20baa1428e679c751b1b4a8d8556ca1</id>
<content type='text'>
Closes #12702
</content>
</entry>
<entry>
<title>Docify std::vec_ng</title>
<updated>2014-03-19T05:03:17+00:00</updated>
<author>
<name>Steven Fackler</name>
<email>sfackler@gmail.com</email>
</author>
<published>2014-03-16T23:04:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0f2d46f3960b1011d4e96ab005b8eba6f7b32b75'/>
<id>urn:sha1:0f2d46f3960b1011d4e96ab005b8eba6f7b32b75</id>
<content type='text'>
I also removed a couple of methods that were silly and added sort.
</content>
</entry>
<entry>
<title>Make method Vec::remove() public</title>
<updated>2014-03-18T16:53:32+00:00</updated>
<author>
<name>Jorge Aparicio</name>
<email>japaric@linux.com</email>
</author>
<published>2014-03-18T16:53:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1f4c63049ed2e323ba2961c19dc067f86dd61861'/>
<id>urn:sha1:1f4c63049ed2e323ba2961c19dc067f86dd61861</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add method Vec&lt;T&gt;::as_mut_ptr()</title>
<updated>2014-03-16T21:20:44+00:00</updated>
<author>
<name>Cadence Marseille</name>
<email>cadencemarseille@gmail.com</email>
</author>
<published>2014-03-16T21:20:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5db7f7ed2413476e2006af6068d1b3a53e00db38'/>
<id>urn:sha1:5db7f7ed2413476e2006af6068d1b3a53e00db38</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: render the vec_ng docs.</title>
<updated>2014-03-14T00:28:39+00:00</updated>
<author>
<name>Huon Wilson</name>
<email>dbau.pp+github@gmail.com</email>
</author>
<published>2014-03-13T12:59:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=adc357abe6de869159a6268dc14709a4dd19e008'/>
<id>urn:sha1:adc357abe6de869159a6268dc14709a4dd19e008</id>
<content type='text'>
These are wildly incomplete, but having something there is better than
nothing, e.g. so that people know it exists, and many of the functions
behaviour can be guessed from the name or by checking the source: it's
knowing they exist at all that's the hard part.
</content>
</entry>
<entry>
<title>auto merge of #12238 : ktt3ja/rust/lifetime-error-msg, r=nikomatsakis</title>
<updated>2014-03-13T16:41:35+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2014-03-13T16:41:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3fbee34a89c478f959046bf4b4e12a70e937c374'/>
<id>urn:sha1:3fbee34a89c478f959046bf4b4e12a70e937c374</id>
<content type='text'>
For the following code snippet:

```rust
struct Foo { bar: int }
fn foo1(x: &amp;Foo) -&gt; &amp;int {
    &amp;x.bar
}
```

This PR generates the following error message:

```rust
test.rs:2:1: 4:2 note: consider using an explicit lifetime parameter as shown: fn foo1&lt;'a&gt;(x: &amp;'a Foo) -&gt; &amp;'a int
test.rs:2 fn foo1(x: &amp;Foo) -&gt; &amp;int {
test.rs:3     &amp;x.bar
test.rs:4 }
test.rs:3:5: 3:11 error: cannot infer an appropriate lifetime for borrow expression due to conflicting requirements
test.rs:3     &amp;x.bar
              ^~~~~~
```

Currently it does not support methods.
</content>
</entry>
<entry>
<title>auto merge of #12845 : eddyb/rust/vec-no-drop-flag, r=thestinger</title>
<updated>2014-03-13T11:36:36+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2014-03-13T11:36:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2c8bce1c768a59e2ad4a05042ff88e910fa3ae89'/>
<id>urn:sha1:2c8bce1c768a59e2ad4a05042ff88e910fa3ae89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Vec: remove the drop flag to make it no larger than (*T, uint, uint).</title>
<updated>2014-03-12T20:01:33+00:00</updated>
<author>
<name>Eduard Burtescu</name>
<email>edy.burt@gmail.com</email>
</author>
<published>2014-03-12T20:01:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=500bade87e48eacf5cf14e236ca46bd434e542d6'/>
<id>urn:sha1:500bade87e48eacf5cf14e236ca46bd434e542d6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add shift and remove methods for Vec</title>
<updated>2014-03-12T19:31:30+00:00</updated>
<author>
<name>Kiet Tran</name>
<email>ktt3ja@gmail.com</email>
</author>
<published>2014-03-11T04:53:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ed2b3a2f0b8e0737b38528aa7d64efb176c7e2a8'/>
<id>urn:sha1:ed2b3a2f0b8e0737b38528aa7d64efb176c7e2a8</id>
<content type='text'>
</content>
</entry>
</feed>
