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
use std::collections::HashMap;
use std::fmt;


use crate::Int;
// use crate::Float;
use crate::_String;
// use crate::Char;
use crate::Object;
// use crate::_Object;
// use crate::_Hashable;
use super::Hashable;
use super::SetItem;
use std::hash::Hash;
// use crate::_Object;


// TODO implement hash trait for object
/// Dict struct that represents the python dict
pub struct Dict<T: Sized + Eq + Hash + PartialEq> {
    /// hashmap of object and object
    _dict: HashMap<Hashable<T>, Object>,
}

impl<T> Dict<T>
where
    T: Sized + Eq + Hash + PartialEq,
{
    /// creates a new empty python dict
    pub fn new() -> Dict<T> {
        Dict {
            _dict: HashMap::new(),
        }
    }
}

// impl<K, V> SetItem<K, V> for Dict
// where K: _Hashable, V: _Object + Sized
// {
//     fn set(&mut self, key: K, value: V) {
//         self._dict.insert(key, value);
//     }
// }

impl<T> SetItem<Int<T>, _String> for Dict<T>
where
    T: Sized + Eq + Hash + PartialEq,
{
    fn set(&mut self, key: Int<T>, value: _String) {
        self._dict.insert(Hashable::Int(key), Object::String(value));
    }
}

// impl<T> Default for Dict<T>
// where T: Sized
// {
//     fn default() -> Self {
//         Dict::new()
//     }
// }

#[allow(unused_must_use)]

impl<T> fmt::Display for Dict<T>
where
    T: Sized + fmt::Display + Eq + Hash + PartialEq,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        writeln!(f, "{{");
        for (key, value) in self._dict.iter() {
            write!(f, "    {}: {}", key, value);
        }
        writeln!(f, "\n}}")
    }
}


impl<T> Default for Dict<T>
where
    T: Sized + Eq + Hash + PartialEq,
{
    fn default() -> Self {
        Self::new()
    }
}