mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
add source links
This commit is contained in:
parent
676869f944
commit
046e1b36db
66 changed files with 103 additions and 25 deletions
|
@ -7,8 +7,10 @@
|
|||
* Copyright: Copyright Digital Mars 2008 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
*
|
||||
* Copyright Digital Mars 2008 - 2009.
|
||||
* Source: $(PHOBOSSRC std/___fileinit.d)
|
||||
*/
|
||||
|
||||
/* Copyright Digital Mars 2008 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
* http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
|
|
@ -34,6 +34,7 @@ sort!("a > b")(a); // predicate as string
|
|||
sort(a); // no predicate, "a < b" is implicit
|
||||
----
|
||||
|
||||
Source: $(PHOBOSSRC std/_algorithm.d)
|
||||
Macros:
|
||||
WIKI = Phobos/StdAlgorithm
|
||||
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
// Written in the D programming language.
|
||||
/**
|
||||
Functions and types that manipulate built-in arrays.
|
||||
|
||||
Copyright: Copyright Andrei Alexandrescu 2008-.
|
||||
|
||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||
|
||||
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||
|
||||
Functions and types that manipulate built-in arrays.
|
||||
Source: $(PHOBOSSRC std/_array.d)
|
||||
*/
|
||||
module std.array;
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
* Copyright: Masahiro Nakagawa 2010-.
|
||||
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||
* Authors: Masahiro Nakagawa, Daniel Murphy (Single value Encoder and Decoder)
|
||||
* Source: $(PHOBOSSRC std/_base64.d)
|
||||
*/
|
||||
module std.base64;
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
*
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: Don Clugston
|
||||
* Source: $(PHOBOSSRC std/_bigint.d)
|
||||
*/
|
||||
/* Copyright Don Clugston 2008 - 2010.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* Copyright: Copyright Tomasz Stachowiak 2006 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: Tomasz Stachowiak
|
||||
* Source: $(PHOBOSSRC std/_bind.d)
|
||||
*/
|
||||
/* Copyright Tomasz Stachowiak 2006 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -7,13 +7,14 @@ Macros:
|
|||
|
||||
WIKI = StdBitarray
|
||||
|
||||
Copyright: Copyright Digital Mars 2007 - 2009.
|
||||
Copyright: Copyright Digital Mars 2007 - 2011.
|
||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
$(WEB erdani.org, Andrei Alexandrescu)
|
||||
Source: $(PHOBOSSRC std/_bitmanip.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Digital Mars 2007 - 2009.
|
||||
Copyright Digital Mars 2007 - 2011.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
|
|
@ -6,11 +6,12 @@
|
|||
* Macros:
|
||||
* WIKI = Phobos/StdCompiler
|
||||
*
|
||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* Copyright: Copyright Digital Mars 2000 - 2011.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
* Source: $(PHOBOSSRC std/_compiler.d)
|
||||
*/
|
||||
/* Copyright Digital Mars 2000 - 2009.
|
||||
/* Copyright Digital Mars 2000 - 2011.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
* http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
Authors: Lars Tandle Kyllingstad
|
||||
Copyright: Copyright (c) 2010, Lars T. Kyllingstad.
|
||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
Source: $(PHOBOSSRC std/_complex.d)
|
||||
*/
|
||||
module std.complex;
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* Copyright: Copyright Sean Kelly 2009 - 2010.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: Sean Kelly
|
||||
* Source: $(PHOBOSSRC std/_concurrency.d)
|
||||
*/
|
||||
/* Copyright Sean Kelly 2009 - 2010.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
/**
|
||||
Defines generic _containers.
|
||||
|
||||
Source: $(PHOBOSSRC std/_container.d)
|
||||
Macros:
|
||||
WIKI = Phobos/StdContainer
|
||||
TEXTWITHCOMMAS = $0
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
/**
|
||||
This module has been scheduled for deprecation. Use $(D
|
||||
std.exception) instead.
|
||||
Source: $(PHOBOSSRC std/_contracts.d)
|
||||
*/
|
||||
module std.contracts;
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ Authors: $(WEB digitalmars.com, Walter Bright),
|
|||
Shin Fujishiro,
|
||||
Adam D. Ruppe
|
||||
|
||||
Copyright: Copyright Digital Mars 2007-.
|
||||
Source: $(PHOBOSSRC std/_conv.d)
|
||||
*/
|
||||
module std.conv;
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ Macros:
|
|||
Copyright: Copyright Tomas Lindquist Olsen 2007 - 2009.
|
||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: Tomas Lindquist Olsen <tomas@famolsen.dk>
|
||||
Source: $(PHOBOSSRC std/_cpuid.d)
|
||||
*/
|
||||
/*
|
||||
* Copyright Tomas Lindquist Olsen 2007 - 2009.
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
* Copyright: Copyright Ben Hinkle 2007 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: Ben Hinkle
|
||||
* Source: $(PHOBOSSRC std/_cstream.d)
|
||||
*/
|
||||
/* Copyright Ben Hinkle 2007 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
* Source: $(PHOBOSSRC std/_ctype.d)
|
||||
*/
|
||||
/* Copyright Digital Mars 2000 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
* Source: $(PHOBOSSRC std/_date.d)
|
||||
*/
|
||||
/* Copyright Digital Mars 2000 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
*
|
||||
* Source: $(PHOBOSSRC std/_datebase.d)
|
||||
*/
|
||||
/*
|
||||
* Copyright Digital Mars 2000 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
*
|
||||
* Source: $(PHOBOSSRC std/_dateparse.d)
|
||||
*/
|
||||
/*
|
||||
* Copyright Digital Mars 2000 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
|
|
|
@ -84,6 +84,7 @@ auto restoredTime = SysTime.fromISOExtendedString(timeString);
|
|||
Copyright: Copyright 2010
|
||||
License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||
Authors: Jonathan M Davis and Kato Shoichi
|
||||
Source: $(PHOBOSSRC std/_datetime.d)
|
||||
+/
|
||||
module std.datetime;
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
* Thomas Kuehne, Frits van Bommel
|
||||
* Source: $(PHOBOSSRC std/_demangle.d)
|
||||
*/
|
||||
/*
|
||||
* Copyright Digital Mars 2000 - 2009.
|
||||
|
|
|
@ -41,6 +41,7 @@ Macros:
|
|||
Copyright: Copyright Janice Caron 2008 - 2009.
|
||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: Janice Caron
|
||||
Source: $(PHOBOSSRC std/_encoding.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Janice Caron 2008 - 2009.
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
* Copyright: Copyright Andrei Alexandrescu 2008-.
|
||||
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||
*
|
||||
* Source: $(PHOBOSSRC std/_exception.d)
|
||||
*/
|
||||
module std.exception;
|
||||
|
||||
|
|
|
@ -9,11 +9,12 @@ to module $(D $(LINK2 std_stdio.html,std.stdio)).
|
|||
Macros:
|
||||
WIKI = Phobos/StdFile
|
||||
|
||||
Copyright: Copyright Digital Mars 2007 - 2009.
|
||||
Copyright: Copyright Digital Mars 2007 - 2011.
|
||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
$(WEB erdani.org, Andrei Alexandrescu),
|
||||
Jonathan M Davis
|
||||
Source: $(PHOBOSSRC std/_file.d)
|
||||
*/
|
||||
module std.file;
|
||||
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
|
||||
Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.com,
|
||||
Andrei Alexandrescu)
|
||||
|
||||
Source: $(PHOBOSSRC std/_format.d)
|
||||
*/
|
||||
module std.format;
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ WIKI = Phobos/StdFunctional
|
|||
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||
Source: $(PHOBOSSRC std/_functional.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Andrei Alexandrescu 2008 - 2009.
|
||||
|
|
|
@ -22,6 +22,7 @@ Credits: This module and its documentation are inspired by Perl's $(WEB
|
|||
D's $(D getopt) is simpler than its Perl counterpart because $(D
|
||||
getopt) infers the expected parameter types from the static types of
|
||||
the passed-in pointers.
|
||||
Source: $(PHOBOSSRC std/_getopt.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Andrei Alexandrescu 2008 - 2009.
|
||||
|
|
|
@ -9,6 +9,7 @@ WIKI = Phobos/StdGregorian
|
|||
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||
Source: $(PHOBOSSRC std/_gregorian.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Andrei Alexandrescu 2010-.
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
* Copyright: Public Domain
|
||||
* License: Public Domain
|
||||
* Authors: Walter Bright
|
||||
* Source: $(PHOBOSSRC std/_intrinsic.d)
|
||||
* Macros:
|
||||
* WIKI=Phobos/StdIntrinsic
|
||||
*/
|
||||
|
|
|
@ -7,6 +7,7 @@ Copyright: Copyright Jeremie Pelletier 2008 - 2009.
|
|||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: Jeremie Pelletier
|
||||
References: $(LINK http://json.org/)
|
||||
Source: $(PHOBOSSRC std/_json.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Jeremie Pelletier 2008 - 2009.
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
|
||||
/** \file D/std/loader.d This file contains the \c D standard library
|
||||
* executable module loader library, and the ExeModule class.
|
||||
* Source: $(PHOBOSSRC std/_loader.d)
|
||||
*/
|
||||
|
||||
/* ////////////////////////////////////////////////////////////////////////// */
|
||||
|
|
|
@ -49,10 +49,11 @@
|
|||
* SQRT = √
|
||||
* HALF = ½
|
||||
*
|
||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* Copyright: Copyright Digital Mars 2000 - 2011.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
* Don Clugston
|
||||
* Source: $(PHOBOSSRC std/_math.d)
|
||||
*/
|
||||
module std.math;
|
||||
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
* Copyright (C) 1994 Stephen L. Moshier (moshier@world.std.com).
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: Stephen L. Moshier (original C code). Conversion to D by Don Clugston
|
||||
* Source: $(PHOBOSSRC std/_mathspecial.d)
|
||||
*/
|
||||
module std.mathspecial;
|
||||
public import std.math;
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
* References:
|
||||
* $(LINK2 http://en.wikipedia.org/wiki/Md5, Wikipedia on MD5)
|
||||
*
|
||||
* Source: $(PHOBOSSRC std/_md5.d)
|
||||
*
|
||||
* Macros:
|
||||
* WIKI = Phobos/StdMd5
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,7 @@ Copyright: Copyright Digital Mars 2007 - 2009.
|
|||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
Don Clugston
|
||||
Source: $(PHOBOSSRC std/_metastrings.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Digital Mars 2007 - 2009.
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
* Matthew Wilson
|
||||
* Source: $(PHOBOSSRC std/_mmfile.d)
|
||||
*/
|
||||
/* Copyright Digital Mars 2004 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -13,6 +13,7 @@ Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
|||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: $(WEB erdani.org, Andrei Alexandrescu),
|
||||
Don Clugston, Robert Jacques
|
||||
Source: $(PHOBOSSRC std/_numeric.d)
|
||||
*/
|
||||
/*
|
||||
Copyright Andrei Alexandrescu 2008 - 2009.
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||
* Source: $(PHOBOSSRC std/_outbuffer.d)
|
||||
*/
|
||||
/* Copyright Digital Mars 2000 - 2009.
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||
* Grzegorz Adam Hankiewicz, Thomas Kühne, Bill Baxter,
|
||||
* $(WEB erdani.org, Andrei Alexandrescu)
|
||||
* Source: $(PHOBOSSRC std/_path.d)
|
||||
*/
|
||||
module std.path;
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@ writefln("Time elapsed: %s msec", elapsedMsec);
|
|||
* Author:
|
||||
* Matthew Wilson
|
||||
*
|
||||
* Source: $(PHOBOSSRC std/_perf.d)
|
||||
*
|
||||
* Macros:
|
||||
* WIKI=Phobos/StdPerf
|
||||
*/
|
||||
|
@ -896,4 +898,4 @@ else
|
|||
|
||||
static assert(platform_not_supported);
|
||||
}
|
||||
|