This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ diff runtime/phobos/std/regex.d ../phobos/std/regex.d | |
184c184 | |
< $(WEB http://unicode.org/reports/tr18/, UTS 18). Specifically: | |
--- | |
> $(WEB unicode.org/reports/tr18/, UTS 18). Specifically: | |
5560a5561,5564 | |
> static if(direction == OneShot.Fwd) | |
> startPc = startPc; | |
> else | |
> startPc = cast(uint)re.ir.length-IRL!(IR.LookbehindEnd); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.string; | |
import std.stdio; | |
import std.range; | |
import std.lowercase; | |
mixin template delegates( alias instance, methods... ){ | |
static if( methods.length > 0 ){ | |
static if( hasmembers(instance, methods[0]) ){ | |
alias ReturnType!(methods[0]) type; // function/method type returned for first method |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.traits; | |
import std.stdio; | |
import std.string; | |
import std.range; | |
import std.ascii; // lowercase | |
static string getFunctionParameterString(T, S)( T ptt, S pstc ) @safe pure nothrow{ | |
enum result = ""; | |
static if( ptt.length > 0 && pstc.length > 0 && ptt.length == pstc.length){ | |
result = ptt[0].stringof ~" "~ pstc.stringof ~" "; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.string; | |
import std.stdio; | |
import std.range; | |
mixin template arrayDelegator( alias instance, methods... ){ | |
static if( methods.length > 0 ){ | |
static if( methods[0] == "opIndexAssign" ){ | |
mixin(" | |
void opIndexAssign( " ~ ElementEncodingType!(typeof(instance)).stringof ~ " value, size_t index ){ | |
array[index] = value; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The module csv is a set of function to parse many format using a delimitter as csv file | |
* Supported format: | |
* - .mat matrix file | |
* - .bed UCSC file | |
* For parse a .csv file use std.csv | |
*/ | |
module bed; | |
import std.conv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The module csv is a set of function to parse many format using a delimitter as csv file | |
* Supported format: | |
* - .mat matrix file | |
* - .bed UCSC file | |
* For parse a .csv file use std.csv | |
*/ | |
module bed; | |
import std.conv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################## | |
### file 1 of 2: test_bed.d | |
############################################################################## | |
import bed; | |
import std.stdio; | |
import std.string; | |
void main(){ | |
string filePath = "ColorByStrandDemo.txt"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################## | |
### file 1 of 2: test_bed.d | |
############################################################################## | |
import bed; | |
import std.stdio; | |
import std.string; | |
void main(){ | |
string filePath = "ColorByStrandDemo.txt"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The module csv is a set of function to parse many format using a delimitter as csv file | |
* Supported format: | |
* - .mat matrix file | |
* - .bed UCSC file | |
* For parse a .csv file use std.csv | |
*/ | |
module dscience.parser.csv; | |
import std.conv : to; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ldc2 -shared test.d -soname test.so -g | |
$ gcc test.c -L. -ltest -otest -g | |
$ LD_LIBRARY_PATH=`pwd`gdb ./test | |
./test: error while loading shared libraries: test.so: cannot open shared object file: No such file or directory | |
$ LD_LIBRARY_PATH=`pwd` gdb ./test | |
(gdb) b 5 |