scriptlike.std

Scriptlike $(SCRIPTLIKE_VERSION)

Utility to aid in script-like programs.

Written in the 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.

Public Imports

std.algorithm
public import std.algorithm;
std.array
public import std.array;
std.bigint
public import std.bigint;
std.conv
public import std.conv;
std.datetime
public import std.datetime;
std.exception
public import std.exception;
std.getopt
public import std.getopt;
std.math
public import std.math;
std.process
public import std.process;
std.random
public import std.random;
std.range
public import std.range;
std.regex
public import std.regex;
std.stdio
public import std.stdio;
std.string
public import std.string;
std.system
public import std.system;
std.traits
public import std.traits;
std.typecons
public import std.typecons;
std.typetuple
public import std.typetuple;
std.uni
public import std.uni;
std.variant
public import std.variant;
std.path
public import std.path : dirSeparator, pathSeparator, isDirSeparator, buildPath, buildNormalizedPath;
std.file
public import std.file;
std.path
public import std.path;

Meta

Authors

Nick Sabalausky