Spec CharArrayStream
Thin wrapper around char * to the StreamConcept concept.

Extends Stream
All Extended Stream
All Impl'd StreamConcept
Defined in <seqan/stream.h>
Signature template <typename TPointer> class Stream<CharArray<TPointer> >;

Template Parameters

TPointer Specification of the pointer type to work on.

Member Function Overview

Interface Function Overview

Interface Functions Inherited From Stream

Interface Functions Inherited From StreamConcept

Interface Metafunction Overview

Interface Metafunctions Inherited From StreamConcept

Detailed Description

Remarks

This class consists of the char *, another char * to the beginning of the array and a flag signifying EOF.

Note that this is a bounded string variant and might have some performance problems.

Examples

Create a Char Array Stream from a CharString.

CharString buffer = "This is a text.";
Stream<CharArray<char const *> > stream(&buffer[0], &buffer[0] + length(buffer));

Member Functions Detail

CharArrayStream(ptr, ptrEnd);

Constructor

Parameters

ptrEnd The char * that works as the end of the stream.
ptr The char * that works as the beginning of the stream.