Arrange license info in repo to follow REUSE 3.0 convention.
Chris Pressey
1 year, 1 month ago
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 | ||
0 | 4 | module Parc where |
1 | 5 | |
2 | 6 | 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 | ||
0 | 4 | module ParcAssertDemo where |
1 | 5 | import Prelude hiding (pred, seq, any, fail) |
2 | 6 |
0 | -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies | |
1 | -- | |
2 | -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc | |
3 | ||
0 | 4 | module ParcConsume (parsing, fail, pred, seq, alt) where |
1 | 5 | import Prelude hiding (pred, seq, fail) |
2 | 6 |
0 | -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies | |
1 | -- | |
2 | -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc | |
3 | ||
0 | 4 | module ParcConsumeDemo where |
1 | 5 | import Prelude hiding (pred, seq, any, fail) |
2 | 6 |
0 | -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies | |
1 | -- | |
2 | -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc | |
3 | ||
0 | 4 | module ParcDemo where |
1 | 5 | import Prelude hiding (pred, seq, any) |
2 | 6 |
0 | -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies | |
1 | -- | |
2 | -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc | |
3 | ||
0 | 4 | module ParcMerge (ok, fail, pred, update, seq, alt, many, merge, ParseState(Parsing, Failure)) where |
1 | 5 | |
2 | 6 | 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 | ||
0 | 4 | module ParcMergeDemo where |
1 | 5 | import Prelude hiding (pred, seq, any) |
2 | 6 |
0 | -- Copyright (c) 2022-2023 Chris Pressey, Cat's Eye Technologies | |
1 | -- | |
2 | -- SPDX-License-Identifier: LicenseRef-MIT-X-Parc | |
3 | ||
0 | 4 | module ParcSt where |
1 | 5 | |
2 | 6 | 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 | ||
0 | 4 | module ParcSt2St where |
1 | 5 | |
2 | 6 | 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 | ||
0 | 4 | module ParcSt2StDemo where |
1 | 5 | import Prelude hiding (pred, seq, any) |
2 | 6 |