Пакет perl-Data-Buffer: Информация

    Исходный пакет: perl-Data-Buffer
    Версия: 0.04-alt2.1
    Собран:  23 ноября 2010 г. 10:56
    Категория: Разработка/Perl
    Сообщить об ошибке в пакете
    Домашняя страница: http://www.cpan.org

    Лицензия: Artistic
    О пакете: Data-Buffer - Read/write buffer class
    Описание: 
    *Data::Buffer* implements a low-level binary buffer in which
    you can get and put integers, strings, and other data.
    Internally the implementation is based on "pack" and "unpack",
    such that *Data::Buffer* is really a layer on top of those
    built-in functions.
    
    All of the *get_** and *put_** methods respect the
    internal offset state in the buffer object. This means that
    you should read data out of the buffer in the same order that
    you put it in. For example:
    
        $buf->put_int16(24);
        $buf->put_int32(1233455);
        $buf->put_int16(99);
    
        $buf->get_int16;   # 24
        $buf->get_int32;   # 1233455
        $buf->get_int16;   # 99
    
    Of course, this assumes that you *know* the order of the data
    items in the buffer. If your setup is such that your sending
    and receiving processes won't necessarily know what's inside
    the buffers they receive, take a look at the *TEMPLATE USAGE*
    section.

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    perl-Data-Buffer (noarch)

    Сопровождающий: Vitaly Lipatov

    Список участников:
    Igor Vlasenko
    Vitaly Lipatov

      1. perl-devel

    Последнее изменение


    22 ноября 2010 г. Igor Vlasenko 0.04-alt2.1
    - repair after perl 5.12 upgrade using girar-nmu
    6 сентября 2008 г. Vitaly Lipatov 0.04-alt2
    - fix directory ownership violation
    27 августа 2005 г. Vitaly Lipatov 0.04-alt1
    - first build for ALT Linux Sisyphus