Created
February 10, 2019 07:12
-
-
Save JayBazuzi/51bc703d094e674038bf7c4b03e9d145 to your computer and use it in GitHub Desktop.
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
var pipeline = new Pipeline(CharacterFile.From) | |
{ | |
new ResultCollector<CharacterFile>(), | |
new Pipeline(ConfigFile.Matching) | |
{ | |
new ResultCollector<ConfigFile>(), | |
}, | |
new Pipeline(_ => _.ParseCards()) | |
{ | |
new ResultCollector<List<CardData>>(), | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment