├── Ch 12 - Data Processing ├── ProjectGutenbergTextsSmall │ ├── 00ws110.txt │ ├── 01jwr10.txt │ ├── 01tcb10.txt │ ├── 0ddcc10.txt │ ├── 0ddcl10.txt │ ├── 0ws0110.txt │ ├── 0ws0210.txt │ ├── 0ws0310.txt │ ├── 0ws0410.txt │ ├── 0ws0610.txt │ ├── 0ws0910.txt │ ├── 0ws1010.txt │ ├── 0ws1110.txt │ ├── 0ws1210.txt │ ├── 0ws1410.txt │ ├── 0ws1510.txt │ ├── 0ws1610.txt │ ├── 0ws1710.txt │ ├── 0ws1810.txt │ ├── 0ws1910.txt │ ├── 0ws2010.txt │ ├── 0ws2110.txt │ ├── 0ws2210.txt │ ├── 0ws2310.txt │ ├── 0ws2410.txt │ ├── 0ws2510.txt │ ├── 0ws2610.txt │ ├── 0ws2810.txt │ ├── 0ws3010.txt │ ├── 0ws3110.txt │ ├── 0ws3210.txt │ ├── 0ws3310.txt │ ├── 0ws3410.txt │ ├── 0ws3510.txt │ ├── 0ws3610.txt │ ├── 0ws3710.txt │ ├── 0ws3910.txt │ ├── 0ws4010.txt │ ├── 0ws4110.txt │ ├── 0ws4210.txt │ ├── 1aadw10.txt │ ├── 1cahe10.txt │ ├── 1ddcn10.txt │ ├── 1drvb10.txt │ ├── 1jcfs10.txt │ ├── 1jrcl10.txt │ ├── 1llcd10.txt │ ├── 1lncn10.txt │ ├── 1lofl10.txt │ ├── 1lotj10.txt │ ├── 1mlyd10.txt │ ├── 1nmcg10.txt │ ├── 1noam10.txt │ ├── 1spne10.txt │ ├── 1spnt10.txt │ ├── 1vapd10.txt │ ├── 1vkip11.txt │ ├── 1ward10.txt │ ├── 1warn10.txt │ ├── 1whlc10.txt │ ├── 1ws0110.txt │ ├── 1ws0111.txt │ ├── 1ws0210.txt │ ├── 1ws0310.txt │ ├── 1ws0410.txt │ ├── 1ws0411.txt │ ├── 1ws0610.txt │ ├── 1ws0611.txt │ ├── 1ws0710.txt │ ├── 1ws0910.txt │ ├── 1ws0911.txt │ ├── 1ws1010.txt │ ├── 1ws1011.txt │ ├── 1ws1110.txt │ ├── 1ws1111.txt │ ├── 1ws1210.txt │ ├── 1ws1211.txt │ ├── 1ws1410.txt │ ├── 1ws1411.txt │ ├── 1ws1510.txt │ ├── 1ws1511.txt │ ├── 1ws1610.txt │ ├── 1ws1611.txt │ ├── 1ws1710.txt │ ├── 1ws1711.txt │ ├── 1ws1810.txt │ ├── 1ws1811.txt │ ├── 1ws1910.txt │ ├── 1ws1911.txt │ ├── 1ws2010.txt │ ├── 1ws2011.txt │ ├── 1ws2110.txt │ ├── 1ws2111.txt │ ├── 1ws2211.txt │ ├── 1ws2310.txt │ ├── 1ws2311.txt │ ├── 1ws2410.txt │ ├── 1ws2411.txt │ ├── 1ws2511.txt │ ├── 1ws2610.txt │ ├── GUTINDEX.ALL │ └── catalog.rdf ├── Search Engine │ ├── FS Search Engine.sln │ ├── FS Search Engine.v11.suo │ ├── GutenbergFileDownload.fsx │ ├── Indexer.Local │ │ ├── DocumentList.fs │ │ ├── FauxMRFramework.fs │ │ ├── Indexer.Local.fsproj │ │ └── Program.fs │ ├── Indexer │ │ ├── DataTypes.fs │ │ ├── DataTypesTest.fsx │ │ ├── Indexer.fsproj │ │ ├── Mappers.fs │ │ ├── Reducers.fs │ │ ├── Tokenization.fs │ │ └── TokenizationTest.fsx │ ├── Query.Local │ │ ├── Program.fs │ │ └── Query.Local.fsproj │ ├── Query │ │ ├── DataTypesTest.fsx │ │ ├── Enumerators.fs │ │ ├── EnumeratorsTest.fsx │ │ ├── Query.Core.suo │ │ ├── Query.fsproj │ │ ├── QueryLexer.fs │ │ ├── QueryLexer.fsl │ │ ├── QueryParser.fs │ │ ├── QueryParser.fsi │ │ ├── QueryParser.fsy │ │ └── QueryTypes.fs │ └── README.txt └── SearchIndexSmall │ ├── documentlist.txt │ ├── lexicon.txt │ └── postinglists.bin ├── README.md └── Scripts ├── 01 - Intro to FS.fsx ├── 02 - Fundamentals.fsx ├── 03 - Functional Programming.fsx ├── 04 - Imperative Programming.fsx ├── 05 - Object Oriented Programming.fsx ├── 06 - .NET Programming.fsx ├── 07 - Applied Functional Programming.fsx ├── 08 - Applied OOP.fsx ├── 09 - Async and Parallel Programming.fsx ├── 10 - Scripting.fsx ├── 11 - Data Processing.fsx ├── 12 - Reflection.fsx ├── 13 - Computation Expressions.fsx ├── 14 - Quotations.fsx ├── Apdx A - Overview of .NET Libs.fsx ├── Apdx B - FS Introp.fsx ├── Scripts.sln └── Scripts.v11.suo /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/00ws110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/00ws110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/01jwr10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/01jwr10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/01tcb10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/01tcb10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ddcc10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ddcc10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ddcl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ddcl10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0310.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0910.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws0910.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1010.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1510.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1710.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1810.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1910.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws1910.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2010.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2310.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2510.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws2810.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3010.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3310.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3510.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3710.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3910.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws3910.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws4010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws4010.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws4110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws4110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws4210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/0ws4210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1aadw10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1aadw10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1cahe10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1cahe10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ddcn10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ddcn10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1drvb10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1drvb10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1jcfs10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1jcfs10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1jrcl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1jrcl10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1llcd10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1llcd10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1lncn10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1lncn10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1lofl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1lofl10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1lotj10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1lotj10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1mlyd10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1mlyd10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1nmcg10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1nmcg10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1noam10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1noam10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1spne10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1spne10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1spnt10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1spnt10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1vapd10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1vapd10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1vkip11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1vkip11.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ward10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ward10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1warn10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1warn10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1whlc10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1whlc10.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0111.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0310.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0411.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0611.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0611.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0710.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0910.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0910.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws0911.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1010.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1011.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1111.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1210.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1211.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1411.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1510.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1511.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1611.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1611.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1710.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1711.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1810.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1811.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1811.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1910.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1910.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws1911.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2010.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2011.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2110.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2111.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2211.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2310.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2311.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2410.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2411.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2511.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/1ws2610.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/GUTINDEX.ALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/GUTINDEX.ALL -------------------------------------------------------------------------------- /Ch 12 - Data Processing/ProjectGutenbergTextsSmall/catalog.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/ProjectGutenbergTextsSmall/catalog.rdf -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/FS Search Engine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/FS Search Engine.sln -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/FS Search Engine.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/FS Search Engine.v11.suo -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/GutenbergFileDownload.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/GutenbergFileDownload.fsx -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer.Local/DocumentList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer.Local/DocumentList.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer.Local/FauxMRFramework.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer.Local/FauxMRFramework.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer.Local/Indexer.Local.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer.Local/Indexer.Local.fsproj -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer.Local/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer.Local/Program.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/DataTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/DataTypes.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/DataTypesTest.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/DataTypesTest.fsx -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/Indexer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/Indexer.fsproj -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/Mappers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/Mappers.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/Reducers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/Reducers.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/Tokenization.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/Tokenization.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Indexer/TokenizationTest.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Indexer/TokenizationTest.fsx -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query.Local/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query.Local/Program.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query.Local/Query.Local.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query.Local/Query.Local.fsproj -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/DataTypesTest.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/DataTypesTest.fsx -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/Enumerators.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/Enumerators.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/EnumeratorsTest.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/EnumeratorsTest.fsx -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/Query.Core.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/Query.Core.suo -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/Query.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/Query.fsproj -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/QueryLexer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/QueryLexer.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/QueryLexer.fsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/QueryLexer.fsl -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/QueryParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/QueryParser.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/QueryParser.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/QueryParser.fsi -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/QueryParser.fsy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/QueryParser.fsy -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/Query/QueryTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/Query/QueryTypes.fs -------------------------------------------------------------------------------- /Ch 12 - Data Processing/Search Engine/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/Search Engine/README.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/SearchIndexSmall/documentlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/SearchIndexSmall/documentlist.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/SearchIndexSmall/lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/SearchIndexSmall/lexicon.txt -------------------------------------------------------------------------------- /Ch 12 - Data Processing/SearchIndexSmall/postinglists.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Ch 12 - Data Processing/SearchIndexSmall/postinglists.bin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/01 - Intro to FS.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/01 - Intro to FS.fsx -------------------------------------------------------------------------------- /Scripts/02 - Fundamentals.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/02 - Fundamentals.fsx -------------------------------------------------------------------------------- /Scripts/03 - Functional Programming.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/03 - Functional Programming.fsx -------------------------------------------------------------------------------- /Scripts/04 - Imperative Programming.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/04 - Imperative Programming.fsx -------------------------------------------------------------------------------- /Scripts/05 - Object Oriented Programming.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/05 - Object Oriented Programming.fsx -------------------------------------------------------------------------------- /Scripts/06 - .NET Programming.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/06 - .NET Programming.fsx -------------------------------------------------------------------------------- /Scripts/07 - Applied Functional Programming.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/07 - Applied Functional Programming.fsx -------------------------------------------------------------------------------- /Scripts/08 - Applied OOP.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/08 - Applied OOP.fsx -------------------------------------------------------------------------------- /Scripts/09 - Async and Parallel Programming.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/09 - Async and Parallel Programming.fsx -------------------------------------------------------------------------------- /Scripts/10 - Scripting.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/10 - Scripting.fsx -------------------------------------------------------------------------------- /Scripts/11 - Data Processing.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/11 - Data Processing.fsx -------------------------------------------------------------------------------- /Scripts/12 - Reflection.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/12 - Reflection.fsx -------------------------------------------------------------------------------- /Scripts/13 - Computation Expressions.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/13 - Computation Expressions.fsx -------------------------------------------------------------------------------- /Scripts/14 - Quotations.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/14 - Quotations.fsx -------------------------------------------------------------------------------- /Scripts/Apdx A - Overview of .NET Libs.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/Apdx A - Overview of .NET Libs.fsx -------------------------------------------------------------------------------- /Scripts/Apdx B - FS Introp.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/Apdx B - FS Introp.fsx -------------------------------------------------------------------------------- /Scripts/Scripts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/Scripts.sln -------------------------------------------------------------------------------- /Scripts/Scripts.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achrissmith/Programming-FS-Examples/HEAD/Scripts/Scripts.v11.suo --------------------------------------------------------------------------------