www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Where can I find the DEFINITION of vibe IOMode ??

reply Andy Balba <pwplus7 gmail.com> writes:
Where do I fine where IOMode is defined..  as in the last line of 
...

module vibe.core.stream;

import vibe.internal.traits : checkInterfaceConformance, 
validateInterfaceConformance;
import vibe.internal.interfaceproxy;
import core.time;
import std.algorithm;
import std.conv;

public import eventcore.driver : IOMode;

After endless searches, I find many references to it, but never a 
DEFINITION of it
Sep 05 2020
parent reply drug <drug2004 bk.ru> writes:
05.09.2020 22:17, Andy Balba пишет:
 Where do I fine where IOMode is defined..  as in the last line of ...
 
 module vibe.core.stream;
 
 import vibe.internal.traits : checkInterfaceConformance, 
 validateInterfaceConformance;
 import vibe.internal.interfaceproxy;
 import core.time;
 import std.algorithm;
 import std.conv;
 
 public import eventcore.driver : IOMode;
 
 After endless searches, I find many references to it, but never a 
 DEFINITION of it
 
https://github.com/vibe-d/eventcore/blob/a027c233c2542de8372bbff25d0a4804f32a094e/source/eventcore/driver.d#L1087
Sep 05 2020
parent reply Andy Balba <pwplus7 gmail.com> writes:
On Saturday, 5 September 2020 at 19:22:17 UTC, drug wrote:
 05.09.2020 22:17, Andy Balba пишет:
 Where do I fine where IOMode is defined..  as in the last line 
 of ...
 
 module vibe.core.stream;
 
 import vibe.internal.traits : checkInterfaceConformance, 
 validateInterfaceConformance;
 import vibe.internal.interfaceproxy;
 import core.time;
 import std.algorithm;
 import std.conv;
 
 public import eventcore.driver : IOMode;
 
 After endless searches, I find many references to it, but 
 never a DEFINITION of it
 
https://github.com/vibe-d/eventcore/blob/a027c233c2542de8372bbff25d0a4804f32a094e/source/eventcore/driver.d#L1087
drug: thank you..I'm now left with resolving blocking
Sep 05 2020
parent drug <drug2004 bk.ru> writes:
05.09.2020 23:19, Andy Balba пишет:
 https://github.com/vibe-d/eventcore/blob/a027c233c2542de8372bbff25d0a4804f32a094e/source/even
core/driver.d#L1087 
drug: thank you..I'm now left with resolving blocking
you are welcome! Probably this? https://github.com/vibe-d/vibe-core/blob/6ceb462ab68079ab24bfc57b1168dae610099357/source/vibe/core/stream.d#L88
Sep 05 2020