Function isSet [src]

Returns if the ResetEvent was set(). Once reset() is called, this returns false until the next set(). The memory accesses before the set() can be said to happen before isSet() returns true.

Prototype

pub fn isSet(self: *const ResetEvent) bool

Parameters

self: *const ResetEvent

Source

pub fn isSet(self: *const ResetEvent) bool { return self.impl.isSet(); }