Merge pull request #195 from vibe-d/fixes

Fixes
merged-on-behalf-of: Leonid Kramer <l-kramer@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2020-03-14 20:54:18 +01:00 committed by GitHub
commit 6ceb462ab6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -769,7 +769,7 @@ private mixin template isolatedArrayMethods(T, bool mutableRef = true)
@property void length(size_t value) pure { m_array.length = value; }
void opCatAssign(T item) pure
void opOpAssign(string op = "~")(T item) pure
{
static if( isCopyable!T ) m_array ~= item;
else {
@ -778,7 +778,7 @@ private mixin template isolatedArrayMethods(T, bool mutableRef = true)
}
}
void opCatAssign(IsolatedArray!T array) pure
void opOpAssign(string op = "~")(IsolatedArray!T array) pure
{
static if( isCopyable!T ) m_array ~= array.m_array;
else {

View file

@ -1145,7 +1145,7 @@ struct Timer {
/** Resets the timer to the specified timeout
*/
void rearm(Duration dur, bool periodic = false) nothrow
in { assert(dur > 0.seconds, "Negative timer duration specified."); }
in { assert(dur >= 0.seconds, "Negative timer duration specified."); }
body { m_driver.timers.set(m_id, dur, periodic ? dur : 0.seconds); }
/** Resets the timer and avoids any firing.

View file

@ -27,12 +27,12 @@ public import eventcore.driver : IOMode;
/** Pipes an InputStream directly into this OutputStream.
The number of bytes written is either the whole input stream when `nbytes == 0`, or exactly
`nbytes` for `nbytes > 0`. If the input stream contains less than `nbytes` of data, an
exception is thrown.
The number of bytes written is either the whole input stream when
`nbytes == ulong.max`, or exactly `nbytes` for `nbytes < ulong.max`. If the
input stream contains less than `nbytes` of data, an exception is thrown.
Returns:
The actual number of bytes written is returned. If `nbytes` is given
The actual number of bytes written is returned. If `nbytes` is given
and not equal to `ulong.max`, íts value will be returned.
*/
ulong pipe(InputStream, OutputStream)(InputStream source, OutputStream sink, ulong nbytes)