git @ Cat's Eye Technologies Parc / 9d99d63
Arrange license info in repo to follow REUSE 3.0 convention. Chris Pressey 1 year, 1 month ago
14 changed file(s) with 69 addition(s) and 19 deletion(s). Raw diff Collapse all Expand all
+0
-19
LICENSE less more
0 Copyright (c)2022-2023 Chris Pressey, Cat's Eye Technologies
1
2 Permission is hereby granted, free of charge, to any person obtaining a
3 copy of this software and associated documentation files (the "Software"),
4 to deal in the Software without restriction, including without limitation
5 the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 and/or sell copies of the Software, and to permit persons to whom the
7 Software is furnished to do so, subject to the following conditions:
8
9 The above copyright notice and this permission notice shall be included in
10 all copies or substantial portions of the Software.
11
12 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
17 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18 DEALINGS IN THE SOFTWARE.
0 Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1
2 Permission is hereby granted, free of charge, to any person obtaining a
3 copy of this software and associated documentation files (the "Software"),
4 to deal in the Software without restriction, including without limitation
5 the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 and/or sell copies of the Software, and to permit persons to whom the
7 Software is furnished to do so, subject to the following conditions:
8
9 The above copyright notice and this permission notice shall be included in
10 all copies or substantial portions of the Software.
11
12 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
17 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18 DEALINGS IN THE SOFTWARE.
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module Parc where
15
26 data ParseState = Parsing String
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcAssertDemo where
15 import Prelude hiding (pred, seq, any, fail)
26
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcConsume (parsing, fail, pred, seq, alt) where
15 import Prelude hiding (pred, seq, fail)
26
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcConsumeDemo where
15 import Prelude hiding (pred, seq, any, fail)
26
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcDemo where
15 import Prelude hiding (pred, seq, any)
26
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcMerge (ok, fail, pred, update, seq, alt, many, merge, ParseState(Parsing, Failure)) where
15
26 import Prelude hiding (fail, pred, seq)
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcMergeDemo where
15 import Prelude hiding (pred, seq, any)
26
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcSt where
15
26 data ParseState a = Parsing String a
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcSt2St where
15
26 data ParseState a = Parsing String a
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcSt2StDemo where
15 import Prelude hiding (pred, seq, any)
26
0 -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
1 --
2 -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc
3
04 module ParcStDemo where
15 import Prelude hiding (pred, seq, any)
26
0 <!--
1 Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies
2
3 SPDX-License-Identifier: LicenseRef-MIT-X-Parc
4 -->
5
06 Parc
17 ====
28