You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A guard that checks if the current platform is Windows.
11
+
* A guard that checks if the current os is Windows.
12
+
* When True, the OS is Windows.
13
+
* When False, the OS is not Windows.
12
14
*/
13
15
abstractclassIsWindowsGuardextendsGuard{}
14
16
15
17
/**
16
-
* A guard that checks if the current platform is unix or unix-like.
18
+
* A guard that checks if the current OS is any Windows.
19
+
* When True, the OS is Windows.
20
+
* When False, the OS *may* still be Windows.
21
+
*/
22
+
abstractclassIsAnyWindowsGuardextendsGuard{}
23
+
24
+
/**
25
+
* A guard that checks if the current OS is unix or unix-like.
26
+
* When True, the OS is unix or unix-like.
27
+
* When False, the OS is not unix or unix-like.
17
28
*/
18
29
abstractclassIsUnixGuardextendsGuard{}
19
30
31
+
/**
32
+
* A guard that checks if the current OS is unix or unix-like.
33
+
* When True, the OS is unix or unix-like.
34
+
* When False, the OS *may* still be unix or unix-like.
35
+
*/
36
+
abstractclassIsAnyUnixGuardextendsGuard{}
37
+
20
38
/**
21
39
* Holds when the MethodAccess is a call to check the current OS using either the upper case `osUpperCase` or lower case `osLowerCase` string constants.
0 commit comments