This file contains hidden or 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
{-# LANGUAGE OverloadedStrings #-} | |
module DGPHParser(parseDgph) where | |
import qualified Data.Attoparsec.ByteString as A | |
import qualified Data.ByteString as B | |
import Data.Bits | |
import Data.Foldable (foldl') | |
import qualified Data.ByteString as B | |
import qualified Data.Attoparsec.ByteString as A |
This file contains hidden or 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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "0.1.0", | |
"command": "stack", | |
"tasks": [ | |
{ | |
"taskName": "build", | |
"isBuildCommand": true | |
}, |
This file contains hidden or 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
use clap::clap_app; | |
use memmap::MmapOptions; | |
use serde_json::value::RawValue; | |
use std::fs::File; | |
use std::io; | |
fn main() -> io::Result<()> { | |
let matches = clap_app!(myapp => | |
(about: "Split file containing a top level json array into many files.") |
OlderNewer