aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/intervals.rs
blob: 04f7ee7e879c2502efd4e6f6a37a0f7f0edb2cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use shirabe_php_shim::PhpMixed;
use shirabe_semver::constraint::constraint_interface::ConstraintInterface;

#[derive(Debug)]
pub struct Intervals;

impl Intervals {
    pub fn is_subset_of(
        _constraint_a: &dyn ConstraintInterface,
        _constraint_b: &dyn ConstraintInterface,
    ) -> anyhow::Result<bool> {
        todo!()
    }

    pub fn compact_constraint(
        _constraint: Box<dyn ConstraintInterface>,
    ) -> Box<dyn ConstraintInterface> {
        todo!()
    }

    pub fn compact(_constraint: &dyn ConstraintInterface) -> Box<dyn ConstraintInterface> {
        todo!()
    }

    pub fn get(_constraint: &dyn ConstraintInterface) -> anyhow::Result<PhpMixed> {
        todo!()
    }

    pub fn clear() {
        todo!()
    }
}