1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556(* Copyright (C) 2017--2024 Petter A. Urkedal <paurkedal@gmail.com>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version, with the LGPL-3.0 Linking Exception.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* and the LGPL-3.0 Linking Exception along with this library. If not, see
* <http://www.gnu.org/licenses/> and <https://spdx.org>, respectively.
*)(** Multiplicities of zero, one, and many. *)type+'mt=(* not GADT due to variance *)|Zero|One|Zero_or_one|Zero_or_moreconstraint'm=[<`Zero|`One|`Many]typezero=[`Zero]typeone=[`One]typezero_or_one=[`Zero|`One]typezero_or_more=[`Zero|`One|`Many]letzero:[>`Zero]t=Zeroletone:[>`One]t=Oneletzero_or_one:[>`Zero|`One]t=Zero_or_oneletzero_or_more:([>`Zero|`One|`Many]as'a)t=Zero_or_moreletonly_zero:[<`Zero]t->unit=functionZero->()|_->assertfalseletonly_one:[<`One]t->unit=functionOne->()|_->assertfalseletonly_zero_or_one:[<`Zero|`One]t->unit=functionZero|One->()|_->assertfalseletexpose=function|Zero->`Zero|One->`One|Zero_or_one->`Zero_or_one|Zero_or_more->`Zero_or_moreletcan_be_zero=function|One->false|Zero|Zero_or_one|Zero_or_more->trueletcan_be_many=function|Zero|One|Zero_or_one->false|Zero_or_more->true