├── .gitignore ├── .travis.yml ├── LICENSE ├── guidelines.org ├── hmisc.nimble ├── index.rst ├── readme.org ├── src ├── hmisc.nim ├── hmisc │ ├── algo │ │ ├── clformat.nim │ │ ├── clformat_interpolate.nim │ │ ├── halgorithm.nim │ │ ├── hgraph_db.nim │ │ ├── hlex_base.nim │ │ ├── hlex_base.org │ │ ├── hmath.nim │ │ ├── hparse_base.nim │ │ ├── hparse_common.nim │ │ ├── hparse_pegs.nim │ │ ├── hseq_distance.nim │ │ ├── hseq_mapping.nim │ │ ├── hstring_algo.nim │ │ ├── htemplates.nim │ │ ├── htext_algo.nim │ │ ├── htext_layout.nim │ │ ├── htree_mapping.nim │ │ ├── htree_xpath.nim │ │ ├── hyphenation_patterns.nim │ │ ├── lexcast.nim │ │ ├── make_rst.nim │ │ ├── namegen.nim │ │ ├── nim.cfg │ │ ├── procbox.nim │ │ ├── readme.md │ │ ├── tree │ │ │ └── tree_selector.nim │ │ └── tscanf.nim │ ├── core │ │ ├── algorithms.nim │ │ ├── all.nim │ │ ├── code_errors.nim │ │ ├── colored.nim │ │ ├── debug.nim │ │ ├── exceptions.nim │ │ ├── gold.nim │ │ ├── msgbuilder.nim │ │ └── types.nim │ ├── doc_examples.nim │ ├── extra │ │ ├── hdrawing │ │ │ ├── hdrawing.nim │ │ │ └── term_buf.nim │ │ └── treediff │ │ │ ├── bottom_up_matcher.nim │ │ │ ├── comparators.nim │ │ │ ├── edit_generator.nim │ │ │ ├── hungarian_algorithm.nim │ │ │ ├── jcommon.nim │ │ │ ├── lcs_matcher.nim │ │ │ ├── mapping_store.nim │ │ │ ├── matcher.nim │ │ │ ├── nim.cfg │ │ │ ├── priority_queue.nim │ │ │ ├── rted_matcher.nim │ │ │ ├── similarity_metrics.nim │ │ │ ├── subtree_matcher.nim │ │ │ ├── tree.nim │ │ │ ├── treediff_main.nim │ │ │ └── zs_matcher.nim │ ├── hasts │ │ ├── base_writer.nim │ │ ├── graphviz_ast.nim │ │ ├── hext_template.nim │ │ ├── html_ast.nim │ │ ├── html_ast2.nim │ │ ├── json_ast.nim │ │ ├── json_serde.nim │ │ ├── json_serde_extra.nim │ │ ├── latex_ast.nim │ │ ├── latex_writer.nim │ │ ├── openscad_ast.nim │ │ ├── pandoc.nim │ │ ├── serde_macros.nim │ │ ├── svg_ast.nim │ │ ├── xml_ast.nim │ │ ├── xml_serde.nim │ │ └── xsd_ast.nim │ ├── hcommon_converters.nim │ ├── macros │ │ ├── argpass.nim │ │ ├── ast_spec.nim │ │ ├── cl_logic.nim │ │ ├── dod_helpers.nim │ │ ├── henumutils.nim │ │ ├── hmacro_utils.nim │ │ ├── iflet.nim │ │ ├── introspection.nim │ │ ├── nim_ast_aux.nim │ │ ├── readme.md │ │ ├── traceif.nim │ │ └── wrapfields.nim │ ├── manual.org │ ├── nim.cfg │ ├── other │ │ ├── blockfmt-doc.rst │ │ ├── blockfmt.nim │ │ ├── cliparse.nim │ │ ├── colorlogger.nim │ │ ├── hargparse.nim │ │ ├── hcoverage.nim │ │ ├── hjson.nim │ │ ├── hlogger.nim │ │ ├── hpprint.nim │ │ ├── hshell.nim │ │ ├── hshell_convert.nim │ │ ├── htree_draw.nim │ │ ├── hunittest.nim │ │ ├── hunittest.org │ │ ├── hunittest_json.nim │ │ ├── hunittest_xml.nim │ │ ├── jsony_converters.nim │ │ ├── nim.cfg │ │ ├── oswrap.nim │ │ ├── pathwrap.nim │ │ ├── rx.nim │ │ ├── sqlite_extra.nim │ │ ├── strparser.nim │ │ └── uprompt.nim │ ├── preludes │ │ ├── cli_app.nim │ │ ├── project_tasks.nim │ │ └── unittest.nim │ ├── scripts │ │ ├── nim_gcov.nim │ │ └── nim_test.nim │ ├── shellexec │ │ ├── ps.nim │ │ ├── wrap_cmd_exec.nim │ │ └── xephyr.nim │ ├── submodule.nim │ ├── test.nim │ ├── types │ │ ├── colorstring.nim │ │ ├── colortext.nim │ │ ├── geometry_primitives.nim │ │ ├── hgraph.nim │ │ ├── hmap.nim │ │ ├── hprimitives.nim │ │ ├── htrie.nim │ │ ├── hvariant.nim │ │ ├── langcodes.nim │ │ ├── readme.md │ │ ├── rev_set_table.nim │ │ ├── seq2d.nim │ │ └── sparse_grid.nim │ └── wrappers │ │ ├── hfswatch.nim │ │ ├── nim.cfg │ │ ├── treesitter.nim │ │ ├── treesitter_core.nim │ │ ├── wraphelp.nim │ │ ├── wraphelp_cxx.nim │ │ └── wraphelp_decl.nim └── nim.cfg └── tests ├── .gitignore ├── assets └── example_types.nim ├── config.nims ├── cpp └── nim.cfg ├── nim.cfg ├── runall.nim ├── tBlockFmt.nim ├── tBlockFmtCpp.nim ├── tClFormat.nim ├── tColortext.nim ├── tFuzzyJs.nim ├── tFuzzyJsPage.html ├── tHGraph.nim ├── tHParseLex.nim ├── tHSeqDistance.nim ├── tHalgorithm.nim ├── tHalgorithm_script.nims ├── tHargparse.nim ├── tHasts.nim ├── tHdrawing.nim ├── tHelpers.nim ├── tHext.nim ├── tHmiscTypes.nim ├── tHparsePegs.nim ├── tHpprint.nim ├── tHshell.nim ├── tHtext.nim ├── tHtrie.nim ├── tHunittest.nim ├── tHvariant.nim ├── tJsonSerde.nim ├── tMacros.nim ├── tMap.nim ├── tMatching.nim ├── tNRx.nim ├── tNameGen.nim ├── tNimScript.nims ├── tNimTest.nim ├── tOsWrap.nim ├── tScanf.nim ├── tScripts.nim ├── tTreeDistance.nim ├── tTreeSelectors.nim ├── tWrapHelp.nim ├── tWrappers.nim └── tXmlSerde.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/LICENSE -------------------------------------------------------------------------------- /guidelines.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/guidelines.org -------------------------------------------------------------------------------- /hmisc.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/hmisc.nimble -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- 1 | Documentation for hmisc 2 | -------------------------------------------------------------------------------- /readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/readme.org -------------------------------------------------------------------------------- /src/hmisc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc.nim -------------------------------------------------------------------------------- /src/hmisc/algo/clformat.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/clformat.nim -------------------------------------------------------------------------------- /src/hmisc/algo/clformat_interpolate.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/clformat_interpolate.nim -------------------------------------------------------------------------------- /src/hmisc/algo/halgorithm.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/halgorithm.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hgraph_db.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hgraph_db.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hlex_base.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hlex_base.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hlex_base.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hlex_base.org -------------------------------------------------------------------------------- /src/hmisc/algo/hmath.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hmath.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hparse_base.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hparse_base.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hparse_common.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hparse_common.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hparse_pegs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hparse_pegs.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hseq_distance.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hseq_distance.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hseq_mapping.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hseq_mapping.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hstring_algo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hstring_algo.nim -------------------------------------------------------------------------------- /src/hmisc/algo/htemplates.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/htemplates.nim -------------------------------------------------------------------------------- /src/hmisc/algo/htext_algo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/htext_algo.nim -------------------------------------------------------------------------------- /src/hmisc/algo/htext_layout.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/htext_layout.nim -------------------------------------------------------------------------------- /src/hmisc/algo/htree_mapping.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/htree_mapping.nim -------------------------------------------------------------------------------- /src/hmisc/algo/htree_xpath.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/htree_xpath.nim -------------------------------------------------------------------------------- /src/hmisc/algo/hyphenation_patterns.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/hyphenation_patterns.nim -------------------------------------------------------------------------------- /src/hmisc/algo/lexcast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/lexcast.nim -------------------------------------------------------------------------------- /src/hmisc/algo/make_rst.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/make_rst.nim -------------------------------------------------------------------------------- /src/hmisc/algo/namegen.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/namegen.nim -------------------------------------------------------------------------------- /src/hmisc/algo/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/nim.cfg -------------------------------------------------------------------------------- /src/hmisc/algo/procbox.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/procbox.nim -------------------------------------------------------------------------------- /src/hmisc/algo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/readme.md -------------------------------------------------------------------------------- /src/hmisc/algo/tree/tree_selector.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/tree/tree_selector.nim -------------------------------------------------------------------------------- /src/hmisc/algo/tscanf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/algo/tscanf.nim -------------------------------------------------------------------------------- /src/hmisc/core/algorithms.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/algorithms.nim -------------------------------------------------------------------------------- /src/hmisc/core/all.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/all.nim -------------------------------------------------------------------------------- /src/hmisc/core/code_errors.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/code_errors.nim -------------------------------------------------------------------------------- /src/hmisc/core/colored.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/colored.nim -------------------------------------------------------------------------------- /src/hmisc/core/debug.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/debug.nim -------------------------------------------------------------------------------- /src/hmisc/core/exceptions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/exceptions.nim -------------------------------------------------------------------------------- /src/hmisc/core/gold.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/gold.nim -------------------------------------------------------------------------------- /src/hmisc/core/msgbuilder.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/msgbuilder.nim -------------------------------------------------------------------------------- /src/hmisc/core/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/core/types.nim -------------------------------------------------------------------------------- /src/hmisc/doc_examples.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/doc_examples.nim -------------------------------------------------------------------------------- /src/hmisc/extra/hdrawing/hdrawing.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/hdrawing/hdrawing.nim -------------------------------------------------------------------------------- /src/hmisc/extra/hdrawing/term_buf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/hdrawing/term_buf.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/bottom_up_matcher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/bottom_up_matcher.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/comparators.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/comparators.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/edit_generator.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/edit_generator.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/hungarian_algorithm.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/hungarian_algorithm.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/jcommon.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/jcommon.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/lcs_matcher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/lcs_matcher.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/mapping_store.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/mapping_store.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/matcher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/matcher.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/nim.cfg -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/priority_queue.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/priority_queue.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/rted_matcher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/rted_matcher.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/similarity_metrics.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/similarity_metrics.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/subtree_matcher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/subtree_matcher.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/tree.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/tree.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/treediff_main.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/treediff_main.nim -------------------------------------------------------------------------------- /src/hmisc/extra/treediff/zs_matcher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/extra/treediff/zs_matcher.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/base_writer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/base_writer.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/graphviz_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/graphviz_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/hext_template.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/hext_template.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/html_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/html_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/html_ast2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/html_ast2.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/json_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/json_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/json_serde.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/json_serde.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/json_serde_extra.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/json_serde_extra.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/latex_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/latex_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/latex_writer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/latex_writer.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/openscad_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/openscad_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/pandoc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/pandoc.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/serde_macros.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/serde_macros.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/svg_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/svg_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/xml_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/xml_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/xml_serde.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/xml_serde.nim -------------------------------------------------------------------------------- /src/hmisc/hasts/xsd_ast.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hasts/xsd_ast.nim -------------------------------------------------------------------------------- /src/hmisc/hcommon_converters.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/hcommon_converters.nim -------------------------------------------------------------------------------- /src/hmisc/macros/argpass.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/argpass.nim -------------------------------------------------------------------------------- /src/hmisc/macros/ast_spec.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/ast_spec.nim -------------------------------------------------------------------------------- /src/hmisc/macros/cl_logic.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/cl_logic.nim -------------------------------------------------------------------------------- /src/hmisc/macros/dod_helpers.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/dod_helpers.nim -------------------------------------------------------------------------------- /src/hmisc/macros/henumutils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/henumutils.nim -------------------------------------------------------------------------------- /src/hmisc/macros/hmacro_utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/hmacro_utils.nim -------------------------------------------------------------------------------- /src/hmisc/macros/iflet.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/iflet.nim -------------------------------------------------------------------------------- /src/hmisc/macros/introspection.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/introspection.nim -------------------------------------------------------------------------------- /src/hmisc/macros/nim_ast_aux.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/nim_ast_aux.nim -------------------------------------------------------------------------------- /src/hmisc/macros/readme.md: -------------------------------------------------------------------------------- 1 | # Directory 2 | 3 | Various utility macros and templates 4 | -------------------------------------------------------------------------------- /src/hmisc/macros/traceif.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/traceif.nim -------------------------------------------------------------------------------- /src/hmisc/macros/wrapfields.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/macros/wrapfields.nim -------------------------------------------------------------------------------- /src/hmisc/manual.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/manual.org -------------------------------------------------------------------------------- /src/hmisc/nim.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hmisc/other/blockfmt-doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/blockfmt-doc.rst -------------------------------------------------------------------------------- /src/hmisc/other/blockfmt.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/blockfmt.nim -------------------------------------------------------------------------------- /src/hmisc/other/cliparse.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/cliparse.nim -------------------------------------------------------------------------------- /src/hmisc/other/colorlogger.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/colorlogger.nim -------------------------------------------------------------------------------- /src/hmisc/other/hargparse.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hargparse.nim -------------------------------------------------------------------------------- /src/hmisc/other/hcoverage.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hcoverage.nim -------------------------------------------------------------------------------- /src/hmisc/other/hjson.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hjson.nim -------------------------------------------------------------------------------- /src/hmisc/other/hlogger.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hlogger.nim -------------------------------------------------------------------------------- /src/hmisc/other/hpprint.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hpprint.nim -------------------------------------------------------------------------------- /src/hmisc/other/hshell.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hshell.nim -------------------------------------------------------------------------------- /src/hmisc/other/hshell_convert.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hshell_convert.nim -------------------------------------------------------------------------------- /src/hmisc/other/htree_draw.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/htree_draw.nim -------------------------------------------------------------------------------- /src/hmisc/other/hunittest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hunittest.nim -------------------------------------------------------------------------------- /src/hmisc/other/hunittest.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hunittest.org -------------------------------------------------------------------------------- /src/hmisc/other/hunittest_json.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hunittest_json.nim -------------------------------------------------------------------------------- /src/hmisc/other/hunittest_xml.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/hunittest_xml.nim -------------------------------------------------------------------------------- /src/hmisc/other/jsony_converters.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/jsony_converters.nim -------------------------------------------------------------------------------- /src/hmisc/other/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/nim.cfg -------------------------------------------------------------------------------- /src/hmisc/other/oswrap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/oswrap.nim -------------------------------------------------------------------------------- /src/hmisc/other/pathwrap.nim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hmisc/other/rx.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/rx.nim -------------------------------------------------------------------------------- /src/hmisc/other/sqlite_extra.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/sqlite_extra.nim -------------------------------------------------------------------------------- /src/hmisc/other/strparser.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/strparser.nim -------------------------------------------------------------------------------- /src/hmisc/other/uprompt.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/other/uprompt.nim -------------------------------------------------------------------------------- /src/hmisc/preludes/cli_app.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/preludes/cli_app.nim -------------------------------------------------------------------------------- /src/hmisc/preludes/project_tasks.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/preludes/project_tasks.nim -------------------------------------------------------------------------------- /src/hmisc/preludes/unittest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/preludes/unittest.nim -------------------------------------------------------------------------------- /src/hmisc/scripts/nim_gcov.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/scripts/nim_gcov.nim -------------------------------------------------------------------------------- /src/hmisc/scripts/nim_test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/scripts/nim_test.nim -------------------------------------------------------------------------------- /src/hmisc/shellexec/ps.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/shellexec/ps.nim -------------------------------------------------------------------------------- /src/hmisc/shellexec/wrap_cmd_exec.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/shellexec/wrap_cmd_exec.nim -------------------------------------------------------------------------------- /src/hmisc/shellexec/xephyr.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/shellexec/xephyr.nim -------------------------------------------------------------------------------- /src/hmisc/submodule.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/submodule.nim -------------------------------------------------------------------------------- /src/hmisc/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/test.nim -------------------------------------------------------------------------------- /src/hmisc/types/colorstring.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/colorstring.nim -------------------------------------------------------------------------------- /src/hmisc/types/colortext.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/colortext.nim -------------------------------------------------------------------------------- /src/hmisc/types/geometry_primitives.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/geometry_primitives.nim -------------------------------------------------------------------------------- /src/hmisc/types/hgraph.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/hgraph.nim -------------------------------------------------------------------------------- /src/hmisc/types/hmap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/hmap.nim -------------------------------------------------------------------------------- /src/hmisc/types/hprimitives.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/hprimitives.nim -------------------------------------------------------------------------------- /src/hmisc/types/htrie.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/htrie.nim -------------------------------------------------------------------------------- /src/hmisc/types/hvariant.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/hvariant.nim -------------------------------------------------------------------------------- /src/hmisc/types/langcodes.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/langcodes.nim -------------------------------------------------------------------------------- /src/hmisc/types/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/readme.md -------------------------------------------------------------------------------- /src/hmisc/types/rev_set_table.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/rev_set_table.nim -------------------------------------------------------------------------------- /src/hmisc/types/seq2d.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/seq2d.nim -------------------------------------------------------------------------------- /src/hmisc/types/sparse_grid.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/types/sparse_grid.nim -------------------------------------------------------------------------------- /src/hmisc/wrappers/hfswatch.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/wrappers/hfswatch.nim -------------------------------------------------------------------------------- /src/hmisc/wrappers/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/wrappers/nim.cfg -------------------------------------------------------------------------------- /src/hmisc/wrappers/treesitter.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/wrappers/treesitter.nim -------------------------------------------------------------------------------- /src/hmisc/wrappers/treesitter_core.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/wrappers/treesitter_core.nim -------------------------------------------------------------------------------- /src/hmisc/wrappers/wraphelp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/wrappers/wraphelp.nim -------------------------------------------------------------------------------- /src/hmisc/wrappers/wraphelp_cxx.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/hmisc/wrappers/wraphelp_cxx.nim -------------------------------------------------------------------------------- /src/hmisc/wrappers/wraphelp_decl.nim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/src/nim.cfg -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/assets/example_types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/assets/example_types.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") 2 | -------------------------------------------------------------------------------- /tests/cpp/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/cpp/nim.cfg -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/nim.cfg -------------------------------------------------------------------------------- /tests/runall.nim: -------------------------------------------------------------------------------- 1 | import hmisc/preludes/project_tasks 2 | -------------------------------------------------------------------------------- /tests/tBlockFmt.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tBlockFmt.nim -------------------------------------------------------------------------------- /tests/tBlockFmtCpp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tBlockFmtCpp.nim -------------------------------------------------------------------------------- /tests/tClFormat.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tClFormat.nim -------------------------------------------------------------------------------- /tests/tColortext.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tColortext.nim -------------------------------------------------------------------------------- /tests/tFuzzyJs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tFuzzyJs.nim -------------------------------------------------------------------------------- /tests/tFuzzyJsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tFuzzyJsPage.html -------------------------------------------------------------------------------- /tests/tHGraph.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHGraph.nim -------------------------------------------------------------------------------- /tests/tHParseLex.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHParseLex.nim -------------------------------------------------------------------------------- /tests/tHSeqDistance.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHSeqDistance.nim -------------------------------------------------------------------------------- /tests/tHalgorithm.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHalgorithm.nim -------------------------------------------------------------------------------- /tests/tHalgorithm_script.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHalgorithm_script.nims -------------------------------------------------------------------------------- /tests/tHargparse.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHargparse.nim -------------------------------------------------------------------------------- /tests/tHasts.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHasts.nim -------------------------------------------------------------------------------- /tests/tHdrawing.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHdrawing.nim -------------------------------------------------------------------------------- /tests/tHelpers.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHelpers.nim -------------------------------------------------------------------------------- /tests/tHext.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHext.nim -------------------------------------------------------------------------------- /tests/tHmiscTypes.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHmiscTypes.nim -------------------------------------------------------------------------------- /tests/tHparsePegs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHparsePegs.nim -------------------------------------------------------------------------------- /tests/tHpprint.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHpprint.nim -------------------------------------------------------------------------------- /tests/tHshell.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHshell.nim -------------------------------------------------------------------------------- /tests/tHtext.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHtext.nim -------------------------------------------------------------------------------- /tests/tHtrie.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHtrie.nim -------------------------------------------------------------------------------- /tests/tHunittest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHunittest.nim -------------------------------------------------------------------------------- /tests/tHvariant.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tHvariant.nim -------------------------------------------------------------------------------- /tests/tJsonSerde.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tJsonSerde.nim -------------------------------------------------------------------------------- /tests/tMacros.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tMacros.nim -------------------------------------------------------------------------------- /tests/tMap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tMap.nim -------------------------------------------------------------------------------- /tests/tMatching.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tMatching.nim -------------------------------------------------------------------------------- /tests/tNRx.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tNRx.nim -------------------------------------------------------------------------------- /tests/tNameGen.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tNameGen.nim -------------------------------------------------------------------------------- /tests/tNimScript.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tNimScript.nims -------------------------------------------------------------------------------- /tests/tNimTest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tNimTest.nim -------------------------------------------------------------------------------- /tests/tOsWrap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tOsWrap.nim -------------------------------------------------------------------------------- /tests/tScanf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tScanf.nim -------------------------------------------------------------------------------- /tests/tScripts.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tScripts.nim -------------------------------------------------------------------------------- /tests/tTreeDistance.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tTreeDistance.nim -------------------------------------------------------------------------------- /tests/tTreeSelectors.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tTreeSelectors.nim -------------------------------------------------------------------------------- /tests/tWrapHelp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tWrapHelp.nim -------------------------------------------------------------------------------- /tests/tWrappers.nim: -------------------------------------------------------------------------------- 1 | 2 | import hmisc/wrappers/hfswatch 3 | -------------------------------------------------------------------------------- /tests/tXmlSerde.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxscramper/hmisc/HEAD/tests/tXmlSerde.nim --------------------------------------------------------------------------------