mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +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.
|
* Copyright: Copyright Digital Mars 2008 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
*
|
* Source: $(PHOBOSSRC std/___fileinit.d)
|
||||||
* Copyright Digital Mars 2008 - 2009.
|
*/
|
||||||
|
|
||||||
|
/* Copyright Digital Mars 2008 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* 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
|
sort(a); // no predicate, "a < b" is implicit
|
||||||
----
|
----
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_algorithm.d)
|
||||||
Macros:
|
Macros:
|
||||||
WIKI = Phobos/StdAlgorithm
|
WIKI = Phobos/StdAlgorithm
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
// Written in the D programming language.
|
// Written in the D programming language.
|
||||||
/**
|
/**
|
||||||
|
Functions and types that manipulate built-in arrays.
|
||||||
|
|
||||||
Copyright: Copyright Andrei Alexandrescu 2008-.
|
Copyright: Copyright Andrei Alexandrescu 2008-.
|
||||||
|
|
||||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
|
|
||||||
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
|
||||||
Functions and types that manipulate built-in arrays.
|
Source: $(PHOBOSSRC std/_array.d)
|
||||||
*/
|
*/
|
||||||
module std.array;
|
module std.array;
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
* Copyright: Masahiro Nakagawa 2010-.
|
* Copyright: Masahiro Nakagawa 2010-.
|
||||||
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
* Authors: Masahiro Nakagawa, Daniel Murphy (Single value Encoder and Decoder)
|
* Authors: Masahiro Nakagawa, Daniel Murphy (Single value Encoder and Decoder)
|
||||||
|
* Source: $(PHOBOSSRC std/_base64.d)
|
||||||
*/
|
*/
|
||||||
module std.base64;
|
module std.base64;
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
*
|
*
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: Don Clugston
|
* Authors: Don Clugston
|
||||||
|
* Source: $(PHOBOSSRC std/_bigint.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Don Clugston 2008 - 2010.
|
/* Copyright Don Clugston 2008 - 2010.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
* Copyright: Copyright Tomasz Stachowiak 2006 - 2009.
|
* Copyright: Copyright Tomasz Stachowiak 2006 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: Tomasz Stachowiak
|
* Authors: Tomasz Stachowiak
|
||||||
|
* Source: $(PHOBOSSRC std/_bind.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Tomasz Stachowiak 2006 - 2009.
|
/* Copyright Tomasz Stachowiak 2006 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -7,13 +7,14 @@ Macros:
|
||||||
|
|
||||||
WIKI = StdBitarray
|
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>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
$(WEB erdani.org, Andrei Alexandrescu)
|
$(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.
|
Distributed under the Boost Software License, Version 1.0.
|
||||||
(See accompanying file LICENSE_1_0.txt or copy at
|
(See accompanying file LICENSE_1_0.txt or copy at
|
||||||
http://www.boost.org/LICENSE_1_0.txt)
|
http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
|
@ -6,11 +6,12 @@
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI = Phobos/StdCompiler
|
* 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>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* 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.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
Authors: Lars Tandle Kyllingstad
|
Authors: Lars Tandle Kyllingstad
|
||||||
Copyright: Copyright (c) 2010, Lars T. Kyllingstad.
|
Copyright: Copyright (c) 2010, Lars T. Kyllingstad.
|
||||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||||
|
Source: $(PHOBOSSRC std/_complex.d)
|
||||||
*/
|
*/
|
||||||
module std.complex;
|
module std.complex;
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
* Copyright: Copyright Sean Kelly 2009 - 2010.
|
* Copyright: Copyright Sean Kelly 2009 - 2010.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: Sean Kelly
|
* Authors: Sean Kelly
|
||||||
|
* Source: $(PHOBOSSRC std/_concurrency.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Sean Kelly 2009 - 2010.
|
/* Copyright Sean Kelly 2009 - 2010.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/**
|
/**
|
||||||
Defines generic _containers.
|
Defines generic _containers.
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_container.d)
|
||||||
Macros:
|
Macros:
|
||||||
WIKI = Phobos/StdContainer
|
WIKI = Phobos/StdContainer
|
||||||
TEXTWITHCOMMAS = $0
|
TEXTWITHCOMMAS = $0
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/**
|
/**
|
||||||
This module has been scheduled for deprecation. Use $(D
|
This module has been scheduled for deprecation. Use $(D
|
||||||
std.exception) instead.
|
std.exception) instead.
|
||||||
|
Source: $(PHOBOSSRC std/_contracts.d)
|
||||||
*/
|
*/
|
||||||
module std.contracts;
|
module std.contracts;
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
Shin Fujishiro,
|
Shin Fujishiro,
|
||||||
Adam D. Ruppe
|
Adam D. Ruppe
|
||||||
|
|
||||||
Copyright: Copyright Digital Mars 2007-.
|
Source: $(PHOBOSSRC std/_conv.d)
|
||||||
*/
|
*/
|
||||||
module std.conv;
|
module std.conv;
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ Macros:
|
||||||
Copyright: Copyright Tomas Lindquist Olsen 2007 - 2009.
|
Copyright: Copyright Tomas Lindquist Olsen 2007 - 2009.
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: Tomas Lindquist Olsen <tomas@famolsen.dk>
|
Authors: Tomas Lindquist Olsen <tomas@famolsen.dk>
|
||||||
|
Source: $(PHOBOSSRC std/_cpuid.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Copyright Tomas Lindquist Olsen 2007 - 2009.
|
* Copyright Tomas Lindquist Olsen 2007 - 2009.
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
* Copyright: Copyright Ben Hinkle 2007 - 2009.
|
* Copyright: Copyright Ben Hinkle 2007 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: Ben Hinkle
|
* Authors: Ben Hinkle
|
||||||
|
* Source: $(PHOBOSSRC std/_cstream.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Ben Hinkle 2007 - 2009.
|
/* Copyright Ben Hinkle 2007 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_ctype.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_date.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -7,7 +7,9 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
*
|
* Source: $(PHOBOSSRC std/_datebase.d)
|
||||||
|
*/
|
||||||
|
/*
|
||||||
* Copyright Digital Mars 2000 - 2009.
|
* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
*
|
* Source: $(PHOBOSSRC std/_dateparse.d)
|
||||||
|
*/
|
||||||
|
/*
|
||||||
* Copyright Digital Mars 2000 - 2009.
|
* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
|
|
@ -84,6 +84,7 @@ auto restoredTime = SysTime.fromISOExtendedString(timeString);
|
||||||
Copyright: Copyright 2010
|
Copyright: Copyright 2010
|
||||||
License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
Authors: Jonathan M Davis and Kato Shoichi
|
Authors: Jonathan M Davis and Kato Shoichi
|
||||||
|
Source: $(PHOBOSSRC std/_datetime.d)
|
||||||
+/
|
+/
|
||||||
module std.datetime;
|
module std.datetime;
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
* Thomas Kuehne, Frits van Bommel
|
* Thomas Kuehne, Frits van Bommel
|
||||||
|
* Source: $(PHOBOSSRC std/_demangle.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Copyright Digital Mars 2000 - 2009.
|
* Copyright Digital Mars 2000 - 2009.
|
||||||
|
|
|
@ -41,6 +41,7 @@ Macros:
|
||||||
Copyright: Copyright Janice Caron 2008 - 2009.
|
Copyright: Copyright Janice Caron 2008 - 2009.
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: Janice Caron
|
Authors: Janice Caron
|
||||||
|
Source: $(PHOBOSSRC std/_encoding.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Janice Caron 2008 - 2009.
|
Copyright Janice Caron 2008 - 2009.
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
* Copyright: Copyright Andrei Alexandrescu 2008-.
|
* Copyright: Copyright Andrei Alexandrescu 2008-.
|
||||||
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||||
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
*
|
* Source: $(PHOBOSSRC std/_exception.d)
|
||||||
*/
|
*/
|
||||||
module std.exception;
|
module std.exception;
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,12 @@ to module $(D $(LINK2 std_stdio.html,std.stdio)).
|
||||||
Macros:
|
Macros:
|
||||||
WIKI = Phobos/StdFile
|
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).
|
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
$(WEB erdani.org, Andrei Alexandrescu),
|
$(WEB erdani.org, Andrei Alexandrescu),
|
||||||
Jonathan M Davis
|
Jonathan M Davis
|
||||||
|
Source: $(PHOBOSSRC std/_file.d)
|
||||||
*/
|
*/
|
||||||
module std.file;
|
module std.file;
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
|
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.com,
|
Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.com,
|
||||||
Andrei Alexandrescu)
|
Andrei Alexandrescu)
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_format.d)
|
||||||
*/
|
*/
|
||||||
module std.format;
|
module std.format;
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ WIKI = Phobos/StdFunctional
|
||||||
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
||||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
Source: $(PHOBOSSRC std/_functional.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Andrei Alexandrescu 2008 - 2009.
|
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
|
D's $(D getopt) is simpler than its Perl counterpart because $(D
|
||||||
getopt) infers the expected parameter types from the static types of
|
getopt) infers the expected parameter types from the static types of
|
||||||
the passed-in pointers.
|
the passed-in pointers.
|
||||||
|
Source: $(PHOBOSSRC std/_getopt.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Andrei Alexandrescu 2008 - 2009.
|
Copyright Andrei Alexandrescu 2008 - 2009.
|
||||||
|
|
|
@ -9,6 +9,7 @@ WIKI = Phobos/StdGregorian
|
||||||
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
Source: $(PHOBOSSRC std/_gregorian.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Andrei Alexandrescu 2010-.
|
Copyright Andrei Alexandrescu 2010-.
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
* Copyright: Public Domain
|
* Copyright: Public Domain
|
||||||
* License: Public Domain
|
* License: Public Domain
|
||||||
* Authors: Walter Bright
|
* Authors: Walter Bright
|
||||||
|
* Source: $(PHOBOSSRC std/_intrinsic.d)
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI=Phobos/StdIntrinsic
|
* 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>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: Jeremie Pelletier
|
Authors: Jeremie Pelletier
|
||||||
References: $(LINK http://json.org/)
|
References: $(LINK http://json.org/)
|
||||||
|
Source: $(PHOBOSSRC std/_json.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Jeremie Pelletier 2008 - 2009.
|
Copyright Jeremie Pelletier 2008 - 2009.
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
|
|
||||||
/** \file D/std/loader.d This file contains the \c D standard library
|
/** \file D/std/loader.d This file contains the \c D standard library
|
||||||
* executable module loader library, and the ExeModule class.
|
* executable module loader library, and the ExeModule class.
|
||||||
|
* Source: $(PHOBOSSRC std/_loader.d)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* ////////////////////////////////////////////////////////////////////////// */
|
/* ////////////////////////////////////////////////////////////////////////// */
|
||||||
|
|
|
@ -49,10 +49,11 @@
|
||||||
* SQRT = √
|
* SQRT = √
|
||||||
* HALF = ½
|
* 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>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
* Don Clugston
|
* Don Clugston
|
||||||
|
* Source: $(PHOBOSSRC std/_math.d)
|
||||||
*/
|
*/
|
||||||
module std.math;
|
module std.math;
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,7 @@
|
||||||
* Copyright (C) 1994 Stephen L. Moshier (moshier@world.std.com).
|
* 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>.
|
* 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
|
* Authors: Stephen L. Moshier (original C code). Conversion to D by Don Clugston
|
||||||
|
* Source: $(PHOBOSSRC std/_mathspecial.d)
|
||||||
*/
|
*/
|
||||||
module std.mathspecial;
|
module std.mathspecial;
|
||||||
public import std.math;
|
public import std.math;
|
||||||
|
|
|
@ -20,6 +20,8 @@
|
||||||
* References:
|
* References:
|
||||||
* $(LINK2 http://en.wikipedia.org/wiki/Md5, Wikipedia on MD5)
|
* $(LINK2 http://en.wikipedia.org/wiki/Md5, Wikipedia on MD5)
|
||||||
*
|
*
|
||||||
|
* Source: $(PHOBOSSRC std/_md5.d)
|
||||||
|
*
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI = Phobos/StdMd5
|
* 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>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
Don Clugston
|
Don Clugston
|
||||||
|
Source: $(PHOBOSSRC std/_metastrings.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Digital Mars 2007 - 2009.
|
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>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
* Matthew Wilson
|
* Matthew Wilson
|
||||||
|
* Source: $(PHOBOSSRC std/_mmfile.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2004 - 2009.
|
/* Copyright Digital Mars 2004 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* 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>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: $(WEB erdani.org, Andrei Alexandrescu),
|
Authors: $(WEB erdani.org, Andrei Alexandrescu),
|
||||||
Don Clugston, Robert Jacques
|
Don Clugston, Robert Jacques
|
||||||
|
Source: $(PHOBOSSRC std/_numeric.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Andrei Alexandrescu 2008 - 2009.
|
Copyright Andrei Alexandrescu 2008 - 2009.
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_outbuffer.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright),
|
* Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
* Grzegorz Adam Hankiewicz, Thomas Kühne, Bill Baxter,
|
* Grzegorz Adam Hankiewicz, Thomas Kühne, Bill Baxter,
|
||||||
* $(WEB erdani.org, Andrei Alexandrescu)
|
* $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
* Source: $(PHOBOSSRC std/_path.d)
|
||||||
*/
|
*/
|
||||||
module std.path;
|
module std.path;
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,8 @@ writefln("Time elapsed: %s msec", elapsedMsec);
|
||||||
* Author:
|
* Author:
|
||||||
* Matthew Wilson
|
* Matthew Wilson
|
||||||
*
|
*
|
||||||
|
* Source: $(PHOBOSSRC std/_perf.d)
|
||||||
|
*
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI=Phobos/StdPerf
|
* WIKI=Phobos/StdPerf
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,6 +14,7 @@ Copyright: Copyright Digital Mars 2007 - 2009.
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
$(WEB erdani.org, Andrei Alexandrescu)
|
$(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
Source: $(PHOBOSSRC std/_process.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Digital Mars 2007 - 2009.
|
Copyright Digital Mars 2007 - 2009.
|
||||||
|
|
|
@ -34,6 +34,8 @@ distributions, which skew a generator's output statistical
|
||||||
distribution in various ways. So far the uniform distribution for
|
distribution in various ways. So far the uniform distribution for
|
||||||
integers and real numbers have been implemented.
|
integers and real numbers have been implemented.
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_random.d)
|
||||||
|
|
||||||
Macros:
|
Macros:
|
||||||
|
|
||||||
WIKI = Phobos/StdRandom
|
WIKI = Phobos/StdRandom
|
||||||
|
|
|
@ -13,6 +13,7 @@ WIKI = Phobos/StdRange
|
||||||
Copyright: Copyright Andrei Alexandrescu 2008-.
|
Copyright: Copyright Andrei Alexandrescu 2008-.
|
||||||
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
Authors: $(WEB erdani.org, Andrei Alexandrescu), David Simcha
|
Authors: $(WEB erdani.org, Andrei Alexandrescu), David Simcha
|
||||||
|
Source: $(PHOBOSSRC std/_range.d)
|
||||||
*/
|
*/
|
||||||
module std.range;
|
module std.range;
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,7 @@ Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright),
|
Authors: $(WEB digitalmars.com, Walter Bright),
|
||||||
$(WEB erdani.org, Andrei Alexandrescu)
|
$(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
Source: $(PHOBOSSRC std/_regex.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Digital Mars 2000 - 2009.
|
Copyright Digital Mars 2000 - 2009.
|
||||||
|
|
|
@ -81,11 +81,12 @@
|
||||||
* WIKI = StdRegexp
|
* WIKI = StdRegexp
|
||||||
* DOLLAR = $
|
* DOLLAR = $
|
||||||
*
|
*
|
||||||
* 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>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_regexp.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2011.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
|
@ -52,6 +52,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_signals.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
* Notes: For Win32 systems, link with ws2_32.lib.
|
* Notes: For Win32 systems, link with ws2_32.lib.
|
||||||
* Example: See /dmd/samples/d/listener.d.
|
* Example: See /dmd/samples/d/listener.d.
|
||||||
* Authors: Christopher E. Miller
|
* Authors: Christopher E. Miller
|
||||||
|
* Source: $(PHOBOSSRC std/_socket.d)
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI=Phobos/StdSocket
|
* WIKI=Phobos/StdSocket
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
* Authors: Christopher E. Miller
|
* Authors: Christopher E. Miller
|
||||||
* References:
|
* References:
|
||||||
* $(LINK2 std_stream.html, std.stream)
|
* $(LINK2 std_stream.html, std.stream)
|
||||||
|
* Source: $(PHOBOSSRC std/_socketstream.d)
|
||||||
* Macros: WIKI=Phobos/StdSocketstream
|
* Macros: WIKI=Phobos/StdSocketstream
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,9 @@
|
||||||
* Copyright: Copyright Hauke Duden 2004 - 2009.
|
* Copyright: Copyright Hauke Duden 2004 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: Hauke Duden, $(WEB digitalmars.com, Walter Bright)
|
* Authors: Hauke Duden, $(WEB digitalmars.com, Walter Bright)
|
||||||
*
|
* Source: $(PHOBOSSRC std/_stdarg.d)
|
||||||
* Copyright Hauke Duden 2004 - 2009.
|
*/
|
||||||
|
/* Copyright Hauke Duden 2004 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
|
@ -118,6 +118,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_stdint.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -7,8 +7,9 @@
|
||||||
* Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
* Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
*
|
* Source: $(PHOBOSSRC std/_stdiobase.d)
|
||||||
* Copyright Andrei Alexandrescu 2008 - 2009.
|
*/
|
||||||
|
/* Copyright Andrei Alexandrescu 2008 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Written in the D programming language
|
// Written in the D programming language
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Source: $(PHOBOSSRC std/_stream.d)
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI = Phobos/StdStream
|
* WIKI = Phobos/StdStream
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -17,6 +17,8 @@ License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
||||||
Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.org,
|
Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.org,
|
||||||
Andrei Alexandrescu)
|
Andrei Alexandrescu)
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_string.d)
|
||||||
|
|
||||||
$(B $(RED IMPORTANT NOTE:)) Beginning with version 2.052, the
|
$(B $(RED IMPORTANT NOTE:)) Beginning with version 2.052, the
|
||||||
following symbols have been generalized beyond strings and moved to
|
following symbols have been generalized beyond strings and moved to
|
||||||
different modules. This action was prompted by the fact that
|
different modules. This action was prompted by the fact that
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
// Written in the D programming language
|
// Written in the D programming language
|
||||||
// Placed in public domain.
|
// Placed in public domain.
|
||||||
// Written by Walter Bright
|
// Written by Walter Bright
|
||||||
// Convert Win32 error code to string
|
|
||||||
|
/**
|
||||||
|
Convert Win32 error code to string
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_syserror.d)
|
||||||
|
*/
|
||||||
|
|
||||||
module std.syserror;
|
module std.syserror;
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_system.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
* Tomasz Stachowiak ($(D isExpressionTuple)),
|
* Tomasz Stachowiak ($(D isExpressionTuple)),
|
||||||
* $(WEB erdani.org, Andrei Alexandrescu),
|
* $(WEB erdani.org, Andrei Alexandrescu),
|
||||||
* Shin Fujishiro
|
* Shin Fujishiro
|
||||||
|
* Source: $(PHOBOSSRC std/_traits.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2005 - 2009.
|
/* Copyright Digital Mars 2005 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
This module implements a variety of type constructors, i.e., templates
|
This module implements a variety of type constructors, i.e., templates
|
||||||
that allow construction of new, useful general-purpose types.
|
that allow construction of new, useful general-purpose types.
|
||||||
|
|
||||||
|
Source: $(PHOBOSSRC std/_typecons.d)
|
||||||
|
|
||||||
Macros:
|
Macros:
|
||||||
|
|
||||||
WIKI = Phobos/StdVariant
|
WIKI = Phobos/StdVariant
|
||||||
|
|
|
@ -33,8 +33,9 @@
|
||||||
* Copyright: Copyright Bartosz Milewski 2008- 2009.
|
* Copyright: Copyright Bartosz Milewski 2008- 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB bartoszmilewski.wordpress.com, Bartosz Milewski)
|
* Authors: $(WEB bartoszmilewski.wordpress.com, Bartosz Milewski)
|
||||||
*
|
* Source: $(PHOBOSSRC std/_typelist.d)
|
||||||
* Copyright Burton Radons 2008 - 2009.
|
*/
|
||||||
|
/* Copyright Burton Radons 2008 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2005 - 2009.
|
* Copyright: Copyright Digital Mars 2005 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_typetuple.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2005 - 2009.
|
/* Copyright Digital Mars 2005 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_uni.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_uri.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2010.
|
* Copyright: Copyright Digital Mars 2000 - 2010.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_utf.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2010.
|
/* Copyright Digital Mars 2000 - 2010.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
* Copyright: Copyright Andrei Alexandrescu 2007 - 2009.
|
* Copyright: Copyright Andrei Alexandrescu 2007 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
* Authors: $(WEB erdani.org, Andrei Alexandrescu)
|
||||||
|
* Source: $(PHOBOSSRC std/_variant.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Andrei Alexandrescu 2007 - 2009.
|
/* Copyright Andrei Alexandrescu 2007 - 2009.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
|
|
|
@ -113,6 +113,7 @@ Macros:
|
||||||
Copyright: Copyright Janice Caron 2008 - 2009.
|
Copyright: Copyright Janice Caron 2008 - 2009.
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
Authors: Janice Caron
|
Authors: Janice Caron
|
||||||
|
Source: $(PHOBOSSRC std/_xml.d)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
Copyright Janice Caron 2008 - 2009.
|
Copyright Janice Caron 2008 - 2009.
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
* Copyright: Copyright Digital Mars 2000 - 2009.
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
||||||
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_zip.d)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2009.
|
||||||
|
|
|
@ -9,11 +9,12 @@
|
||||||
* Macros:
|
* Macros:
|
||||||
* WIKI = Phobos/StdZlib
|
* WIKI = Phobos/StdZlib
|
||||||
*
|
*
|
||||||
* 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>.
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||||
* Authors: $(WEB digitalmars.com, Walter Bright)
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
||||||
|
* Source: $(PHOBOSSRC std/_zlib.d)
|
||||||
*/
|
*/
|
||||||
/* Copyright Digital Mars 2000 - 2009.
|
/* Copyright Digital Mars 2000 - 2011.
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue