Artifact 935cc3e03ebe462f85a67eb7688dd5106f7d4102
- File
polemy/_common.d
-
2010-11-07 14:34:29
- part of checkin
[0569f7b8c2]
on branch trunk
- - Added function literal evaluator (i.e., closure).
- Workaround for d2stacktrace's infinite-loop bug.
(when std.demangle.demangle use exception inside it,
it will go into an infinite loop. to avoid this,
I choose to unset TraceHandler during stacktrace generation.
This is far from the complete solution, but at least it should
work as expected under single-thread environment...)
(user:
kinaba)
[annotate]
/**
* Authors: k.inaba
* License: NYSL 0.9982 http://www.kmonos.net/nysl/
*
* "Always-opend" modules inside Polemy.
*/
module polemy._common;
public import std.array;
public import std.range;
public import std.algorithm;
public import std.conv : to;
public import std.bigint;
public import std.exception;
public import polemy.tricks;