<feed xmlns='http://www.w3.org/2005/Atom'>
<title>tanya, branch v0.11.0</title>
<subtitle>GC-free, high-performance D library: Containers, networking, metaprogramming, memory management, utilities.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/'/>
<entry>
<title>Stringish to integral type conversion. Fix #44</title>
<updated>2018-07-18T04:33:45+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-18T04:33:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=531cae51a3911ab6a52c79b20dc1614473eb2fb1'/>
<id>531cae51a3911ab6a52c79b20dc1614473eb2fb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>conv: Fix overflow hanndling in readIntegral</title>
<updated>2018-07-17T14:03:05+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-17T14:03:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=1b203507f6d7b4ab167f6e575fd7c206bba24d1c'/>
<id>1b203507f6d7b4ab167f6e575fd7c206bba24d1c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>format: Support text in the format string</title>
<updated>2018-07-14T17:09:21+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-14T17:09:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=99e06e0d049b67eff31e3656d105b1273bc7f887'/>
<id>99e06e0d049b67eff31e3656d105b1273bc7f887</id>
<content type='text'>
 Fix  #25.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Fix  #25.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update dmd to 2.081.1. Remove 2.077.1</title>
<updated>2018-07-13T03:39:58+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-13T03:39:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=158a47d54a874a4e2eda17f822632d8a20cae6a6'/>
<id>158a47d54a874a4e2eda17f822632d8a20cae6a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix EV_SET 0 length on 32-bit BSD</title>
<updated>2018-07-08T10:54:47+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-08T10:54:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=5865e355cdd61f1cd08f5af42d3315d541317386'/>
<id>5865e355cdd61f1cd08f5af42d3315d541317386</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add functional module. Fix #52</title>
<updated>2018-07-07T10:17:59+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-07T10:17:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=a94b1b0af46f69216b6c78ced37de80dc2ffae24'/>
<id>a94b1b0af46f69216b6c78ced37de80dc2ffae24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't check UTF-8 correctness when inserting chars</title>
<updated>2018-07-06T03:36:13+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-06T03:36:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=3df4eb6259b5b0b7a494d90faca2588930f71a17'/>
<id>3df4eb6259b5b0b7a494d90faca2588930f71a17</id>
<content type='text'>
- Fix bug when inserting char ranges that are not arrays
- Optimize insertion from the String own range
- Assume char and char ranges are correclty encoded (as it actually
should be) and don't throw an exception. This should make the most
common use cases nothrow (Fix #19). Dchars and Wchars are still encoded
because they should be converted to UTF-8 before inserting anyway.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Fix bug when inserting char ranges that are not arrays
- Optimize insertion from the String own range
- Assume char and char ranges are correclty encoded (as it actually
should be) and don't throw an exception. This should make the most
common use cases nothrow (Fix #19). Dchars and Wchars are still encoded
because they should be converted to UTF-8 before inserting anyway.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement errol2 for floating point formatting</title>
<updated>2018-07-02T08:47:05+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-07-01T08:47:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=a332d727afca21195bb28008a78328514dd914d7'/>
<id>a332d727afca21195bb28008a78328514dd914d7</id>
<content type='text'>
Handles whole floating point numbers in the range between 2^54 and 2^131.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Handles whole floating point numbers in the range between 2^54 and 2^131.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add uint128 tailored for errol2 computations</title>
<updated>2018-07-02T08:26:45+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-06-30T08:26:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=8241943a58a2b4c0e6c3e0112d08f950ff6465d4'/>
<id>8241943a58a2b4c0e6c3e0112d08f950ff6465d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Iterate hash table by key or by value</title>
<updated>2018-06-29T18:43:05+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2018-06-29T18:42:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=d54e06f43c57ea15adb8100f898ed09eae181e27'/>
<id>d54e06f43c57ea15adb8100f898ed09eae181e27</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
