Skip to content

Commit

Permalink
std.contracts -> std.exception. Also, got rid of UTF-32 encoding.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.dsource.org/projects/dranges/trunk/dranges@95 03fcf2af-b1a7-462d-9739-22f0f80737d1
  • Loading branch information
Philippe Sigaud authored and Philippe Sigaud committed Sep 16, 2010
1 parent 3cc987a commit e324c6d
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Binary file modified algorithm.d
Binary file not shown.
2 changes: 1 addition & 1 deletion binaryheap.d
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Distributed under the Boost Software License, Version 1.0.
module dranges.binaryheap;

import std.algorithm,
std.contracts,
std.conv,
std.exception,
std.functional,
std.math,
std.typecons;
Expand Down
2 changes: 1 addition & 1 deletion functional.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ module dranges.functional;
import std.algorithm,
std.array,
std.bigint,
std.contracts,
std.conv,
std.exception,
std.functional,
std.math,
std.metastrings,
Expand Down
Binary file modified graph.d
Binary file not shown.
2 changes: 1 addition & 1 deletion graphalgorithm.d
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Distributed under the Boost Software License, Version 1.0.
module dranges.graphalgorithm;

import std.algorithm,
std.contracts,
std.conv,
std.exception,
std.math,
std.range,
std.stdio,
Expand Down
2 changes: 1 addition & 1 deletion graphrange.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Distributed under the Boost Software License, Version 1.0.
module dranges.graphrange;

import std.array,
std.contracts,
std.exception,
std.range;

import dranges.algorithm,
Expand Down
2 changes: 1 addition & 1 deletion phobos_extension.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ module dranges.phobos_extension;
import std.c.string; // to give the templates access to c.string as template parameters
import std.algorithm,
std.array,
std.contracts,
std.conv,
std.date,
std.exception,
std.functional,
std.math,
std.metastrings,
Expand Down
4 changes: 2 additions & 2 deletions priorityqueue.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Distributed under the Boost Software License, Version 1.0.
*/
module dranges.priorityqueue;

import std.contracts,
std.conv,
import std.conv,
std.exception,
std.typecons;

import dranges.binaryheap;
Expand Down
2 changes: 1 addition & 1 deletion range.d
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ module dranges.range;
import std.algorithm,
std.array,
std.bigint,
std.contracts,
std.conv,
std.exception,
std.functional,
std.math,
std.metastrings,
Expand Down
2 changes: 1 addition & 1 deletion rangeofranges.d
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ module dranges.rangeofranges;
import std.algorithm,
std.array,
std.bigint,
std.contracts,
std.conv,
std.exception,
std.functional,
std.math,
std.metastrings,
Expand Down
2 changes: 1 addition & 1 deletion recursive.d
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ module dranges.recursive;
import std.algorithm,
std.array,
std.bigint,
std.contracts,
std.conv,
std.exception,
std.functional,
std.math,
std.metastrings,
Expand Down
4 changes: 2 additions & 2 deletions set.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Distributed under the Boost Software License, Version 1.0.
*/
module dranges.set;

import std.contracts,
std.conv;
import std.conv,
std.exception;

///
struct Set(T) {
Expand Down
4 changes: 2 additions & 2 deletions traits.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Distributed under the Boost Software License, Version 1.0.
*/
module dranges.traits;

import std.contracts,
std.conv,
import std.conv,
std.exception,
std.functional,
std.metastrings,
std.range,
Expand Down
2 changes: 1 addition & 1 deletion tuple.d
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Distributed under the Boost Software License, Version 1.0.
module dranges.tuple;

import std.algorithm,
std.contracts,
std.conv,
std.exception,
std.functional,
std.metastrings,
std.range,
Expand Down
Binary file modified typetuple.d
Binary file not shown.

0 comments on commit e324c6d

Please sign in to comment.