-
Notifications
You must be signed in to change notification settings - Fork 10
/
std.d
47 lines (38 loc) · 1.34 KB
/
std.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/++
$(H2 Scriptlike $(SCRIPTLIKE_VERSION))
Utility to aid in script-like programs.
Written in the $(LINK2 http://dlang.org, D programming language).
Automatically pulls in anything from Phobos likely to be useful for scripts.
The public `std.file` and `std.path` imports here are static imports to
avoid name conflicts with the $(API_PATH_EXTR Path)-based wrappers in
`scriptlike.file` and `scriptlike.path`.
curl is omitted here because it involves an extra link dependency.
Copyright: Copyright (C) 2014-2017 Nick Sabalausky
License: $(LINK2 https://github.com/Abscissa/scriptlike/blob/master/LICENSE.txt, zlib/libpng)
Authors: Nick Sabalausky
+/
module scriptlike.std;
public import std.algorithm;
public import std.array;
public import std.bigint;
public import std.conv;
public import std.datetime;
public import std.exception;
public import std.getopt;
public import std.math;
public import std.process;
public import std.random;
public import std.range;
public import std.regex;
public import std.stdio;
public import std.string;
public import std.system;
public import std.traits;
public import std.typecons;
public import std.typetuple;
public import std.uni;
public import std.variant;
public import std.path : dirSeparator, pathSeparator, isDirSeparator,
buildPath, buildNormalizedPath;
public static import std.file;
public static import std.path;