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
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
use std::borrow::Cow;
use std::fmt;
use std::fmt::Display;
use std::fmt::Write;

use super::abc::*;


// CHECK whether it is necessary
impl <'a, T> Type for &'a T where T: Type {
    fn iclone(&self) -> BType {
        (*self as &Type).iclone()
    }
}


// --- [ default implementations ] ------------------------------------------------------------------------------------

impl <T> IRender for T where T: Type {
    default fn render<'w>(&self, writer: &mut Writer<'w>) -> fmt::Result {
        debug!("Default render for Type {:?}", self);
        write!(writer, "#Type")
    }
}

impl <T> IRender for T where T: Type + Display {
    default fn render<'w>(&self, writer: &mut Writer<'w>) -> fmt::Result {
        write!(writer, "{}", self)
    }
}

impl <T> AsString for T where T: Type {
    default fn is_string(&self) -> bool {
        false
    }

    default fn try_as_string(&self) -> Option<Cow<str>> {
        None
    }
}

impl <T> AsString for T where T: Type + Display {
    default fn try_as_string(&self) -> Option<Cow<str>> {
        Some(Cow::Owned(ToString::to_string(self)))
    }
}

impl <T> AsBool for T where T: Type {
    default fn is_bool(&self) -> bool {
        false
    }
    default fn to_bool(&self) -> bool {
        true
    }
}

impl <T> AsReal for T where T: Type {
    default fn is_real(&self) -> bool {
        false
    }
    default fn try_as_real(&self) -> Option<f64> {
        None
    }
}

impl <T> AsInt for T where T: Type {
    default fn is_int(&self) -> bool {
        false
    }

    default fn try_as_int(&self) -> Option<i64> {
        None
    }
}

impl <T> AsIterable for T where T: Type {
    default fn is_iterable(&self) -> bool {
        self.try_as_iterable().is_some()
    }

    default fn try_as_iterable(&self) -> Option<&IIterable> {
        None
    }
}

impl <T> AsComposable for T where T: Type {
    default fn is_composable(&self) -> bool {
        false
    }

    default fn try_as_composable(&self) -> Option<&IComposable> {
        None
    }
}

impl <T> AsComposable for T where T: Type + IComposable {
    fn is_composable(&self) -> bool {
        true
    }

    default fn try_as_composable(&self) -> Option<&IComposable> {
        Some(self)
    }
}

impl <T> AsInvocable for T where T: Type {
    default fn is_invocable(&self) -> bool {
        self.try_as_invocable().is_some()
    }

    default fn try_as_invocable(&self) -> Option<&IInvocable> {
        None
    }
}


impl <T> AsPartialEq for T where T: Type {
    default fn is_partial_eq(&self) -> bool {
        false
    }

    default fn try_as_partial_eq(&self) -> Option<&IPartialEq> {
        None
    }
}

impl <T> AsPartialEq for T where T: Type + IPartialEq {
    default fn is_partial_eq(&self) -> bool {
        true
    }

    default fn try_as_partial_eq(&self) -> Option<&IPartialEq> {
        Some(self)
    }
}

impl <T> AsPartialOrd for T where T: Type {
    default fn is_partial_ord(&self) -> bool {
        false
    }

    default fn try_as_partial_ord(&self) -> Option<&IPartialOrd> {
        None
    }
}

impl <T> AsPartialOrd for T where T: Type + IPartialOrd {
    default fn is_partial_ord(&self) -> bool {
        true
    }

    default fn try_as_partial_ord(&self) -> Option<&IPartialOrd> {
        Some(self)
    }
}


// -------------------------------------------------------------------------------------------------


#[cfg_attr(feature = "clippy", allow(boxed_local))]
impl <S> IArithm for S where S: Type {
    default fn try_add<'a>(&self, _other: Cow<'a, BType>) -> Option<Cow<'a, BType>> { None }
    default fn try_sub<'a>(&self, _other: Cow<'a, BType>) -> Option<Cow<'a, BType>> { None }
    default fn try_mul<'a>(&self, _other: Cow<'a, BType>) -> Option<Cow<'a, BType>> { None }
    default fn try_div<'a>(&self, _other: Cow<'a, BType>) -> Option<Cow<'a, BType>> { None }
}