Streamable 1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Streamable --version 1.0.0
NuGet\Install-Package Streamable -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Streamable" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Streamable" Version="1.0.0" />
<PackageReference Include="Streamable" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Streamable --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Streamable, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Streamable@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Streamable&version=1.0.0
#tool nuget:?package=Streamable&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Streamable
This library is all about speedy data parsing, churning out super small byte streams.
Table of Contents
Installation
To use this library, simply get and include the header file Streamable.hpp
into your project.
Features
- fast - the parsing represents just a simple iteration, knows where every object is and how big it is, for example it reserves the memory for ranges that allow it before adding elements etc...
- easy-to-use - inherit a class and use a macro
- single-header - just copy paste the file in your project
- simple format - contains just the data itself and for the types that have a dynamic size a metadata representing just a uint32_t
- has no dependencies - uses just the standard library
- accepts multiple data types - beside itself (as a pointer or not) ofc, primitive types (ex.: bool, unsigned int, double etc...), strings (ex.: std::string. std::wstring etc...), any type with standard layout (ex.: POD structs and classes, enums, etc...), nested ranges (ex.: vector, list, vector<list> etc...)
Usage
- Inherit from the
IStreamable
class or any class that implements it. - Use the macro STREAMABLE_DEFINE where you need to pass the base class and the objects you want to parse
- OPTIONAL If there are derived classes as base class pointers to parse you MUST implement FindDerivedStreamable
Examples
- Examples - Mixed
Documentation
There are 5 macros:
- STREAMABLE_DEFINE - implements the necessary methods for parsing
- STREAMABLE_DEFINE_INTRUSIVE - there are some streamable methods that are not public and needs to be accessed
- STREAMABLE_DEFINE_TO_STREAM - implements the ToStream method
- STREAMABLE_DEFINE_FROM_STREAM - implements the FromStream method
- STREAMABLE_DEFINE_FIND_PARSE_SIZE - implements the FindParseSize method
And a method that MUST be implemented in order to deserialize BaseClass* which returns a default BaseClass*: FindDerivedStreamable
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Everything