Go to file
Sebastian Wilzbach 018b30b832
Merge pull request #8 from ximion/master
Some Meson improvements
2018-03-05 18:52:20 +01:00
doc Generated docs 2015-02-16 13:53:00 +01:00
source try to get it compiling on pre 2066 2015-03-28 11:06:47 +01:00
.travis.yml travis: Make MacOS build work again 2018-03-05 15:46:34 +01:00
appveyor.yml Enable testing on Windows with AppVeyor 2017-06-10 18:14:39 +02:00
hmod.cfg hmod.cfg 2015-02-16 13:52:48 +01:00
LICENSE_1_0.txt Initial commit. 2014-08-06 15:35:59 +02:00
meson.build Modernize Meson file 2018-03-04 21:58:56 +01:00
package.json Initial commit. 2014-08-06 15:35:59 +02:00
README.html README update 2015-02-16 13:53:14 +01:00
README.rst trivial: Update Travis and Dub badges 2017-05-23 11:00:25 +02:00

==========
TinyEndian
==========

.. image:: https://travis-ci.org/dlang-community/tinyendian.svg?branch=master
   :target: https://travis-ci.org/dlang-community/tinyendian
.. image:: https://img.shields.io/dub/v/tinyendian.svg
   :target: http://code.dlang.org/packages/tinyendian

------------
Introduction
------------

TinyEndian is a minimal endianness library for the D programming language.  It has no
external dependencies, it only needs a D compiler and Phobos (standard library).
TinyEndian doesn't allocate memory and is fully **@nogc** to allow use in
high-performance code.

The API is not stable and may change in the future.

--------
Features
--------

* Swap byte order of 2- or 4-byte elements in an array in place.
* Read a UTF-8, UTF-16 or UTF-32 buffer, determine its endianness using a UTF
  byte-order-mark and convert it to system endianness in place.
* No external dependencies.
* pure, nothrow and @nogc.

-------------------
Directory structure
-------------------

===============  =======================================================================
Directory        Contents
===============  =======================================================================
``./``           This README file, license, DUB package file.
``./source``     Source code.
===============  =======================================================================


-----
Usage
-----

Assuming you use `dub <http://code.dlang.org/about>`_, add this line::

   "tinyendian": { "version" : "~>0.1.0" }

to the ``"dependencies"`` in your project's ``dub.json``.

If you don't use dub, you can directly copy the ``source/tinyendian.d`` file into your
project.

TinyEndian requires DMD 2.066 or equivalent GDC/LDC.

`API documentation <http://ddocs.org/tinyendian/~master/index.html>`_ can be found at
`DDocs.org <http://ddocs.org>`_.


-------
License
-------

TinyEndian is released under the terms of the
`Boost Software License 1.0 <http://www.boost.org/LICENSE_1_0.txt>`_.
This license allows you to use the source code in your own projects, open source
or proprietary, and to modify it to suit your needs. However, in source
distributions, you have to preserve the license headers in the source code and
the accompanying license file.

Full text of the license can be found in file ``LICENSE_1_0.txt`` and is also
displayed here::

    Boost Software License - Version 1.0 - August 17th, 2003

    Permission is hereby granted, free of charge, to any person or organization
    obtaining a copy of the software and accompanying documentation covered by
    this license (the "Software") to use, reproduce, display, distribute,
    execute, and transmit the Software, and to prepare derivative works of the
    Software, and to permit third-parties to whom the Software is furnished to
    do so, all subject to the following:

    The copyright notices in the Software and this entire statement, including
    the above license grant, this restriction and the following disclaimer,
    must be included in all copies of the Software, in whole or in part, and
    all derivative works of the Software, unless such copies or derivative
    works are solely in the form of machine-executable object code generated by
    a source language processor.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
    SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
    FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
    ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    DEALINGS IN THE SOFTWARE.


-------
Credits
-------

TinyEndian was created by Ferdinand Majerech aka Kiith-Sa kiithsacmp[AT]gmail.com .

Parts of code based on the ``std.stream`` Phobos module.

D:YAML was created using Vim and DMD Linux Mint as a YAML parsing library for the `D
programming language <http://www.dlang.org>`_.