Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 07-May-2022 | - | ||||
dtl/ | H | 30-Sep-2021 | - | 1,524 | 965 | |
CONTRIBUTORS | H A D | 08-Jan-2013 | 68 | 3 | 2 | |
COPYING | H A D | 08-Jan-2013 | 1.6 KiB | 31 | 24 | |
ChangeLog | H A D | 08-Jan-2013 | 4.9 KiB | 245 | 122 | |
README.md | H A D | 08-Jan-2013 | 778 | 35 | 19 | |
SConstruct | H A D | 08-Jan-2013 | 180 | 8 | 5 |
README.md
1DTL 2=== 3 4What is dtl? 5------------ 6 7dtl is a diff template library written in C++. 8 9Copyright(C) 2012 Tatsuhiko Kubo <<cubicdaiya@gmail.com>> 10 11dtl can compare two sequences with arbitrary type, however the sequences must support the random access iterator. 12Please read the document at the following URL for details: 13 14<http://code.google.com/p/dtl-cpp/> 15 16 17License 18------- 19 20Please read the file COPYING or the document at the following URL concerning the license for dtl: 21 22<http://code.google.com/p/dtl-cpp/source/browse/COPYING> 23 24 25How to use dtl 26-------------- 27 28To start using this library, all you need to do is include dtl.hpp. 29 30 #include "dtl/dtl.hpp" 31 32If you are interested in the details, please visit the following URL: 33 34<http://code.google.com/p/dtl-cpp/wiki/Tutorial> 35