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