1 /** 2 * Fast way to import all modules from $(B dcheck) package. 3 * 4 * Example: 5 * ------- 6 * import dcheck.d; 7 * ------- 8 * 9 * Copyright: © 2014 Anton Gushcha 10 * License: Subject to the terms of the MIT license, as written in the included LICENSE file. 11 * Authors: NCrashed <ncrashed@gmail.com> 12 */ 13 module dcheck.d; 14 15 public 16 { 17 import dcheck.arbitrary; 18 import dcheck.constraint; 19 import dcheck.generator; 20 import dcheck.maybe; 21 }