Function changeDetectionStream [src]

Alias for std.io.change_detection_stream.changeDetectionStream

Prototype

pub fn changeDetectionStream( source: []const u8, underlying_writer: anytype, ) ChangeDetectionStream(@TypeOf(underlying_writer))

Parameters

source: []const u8

Source

pub fn changeDetectionStream( source: []const u8, underlying_writer: anytype, ) ChangeDetectionStream(@TypeOf(underlying_writer)) { return ChangeDetectionStream(@TypeOf(underlying_writer)){ .anything_changed = false, .underlying_writer = underlying_writer, .source_index = 0, .source = source, }; }