コード例 #1
0
ファイル: cons.py プロジェクト: zhihuizhiming/hy
    def replace(self, other):
        if self.car is not None:
            replace_hy_obj(self.car, other)
        if self.cdr is not None:
            replace_hy_obj(self.cdr, other)

        HyObject.replace(self, other)
コード例 #2
0
ファイル: cons.py プロジェクト: Foxboron/hy
    def replace(self, other):
        if self.car is not None:
            self.car.replace(other)
        if self.cdr is not None:
            self.cdr.replace(other)

        HyObject.replace(self, other)
コード例 #3
0
    def replace(self, other):
        if self.car is not None:
            self.car.replace(other)
        if self.cdr is not None:
            self.cdr.replace(other)

        HyObject.replace(self, other)
コード例 #4
0
    def replace(self, other):
        for x in self:
            replace_hy_obj(x, other)

        HyObject.replace(self, other)
        return self
コード例 #5
0
ファイル: list.py プロジェクト: Foxboron/hy
    def replace(self, other):
        for x in self:
            x.replace(other)

        HyObject.replace(self, other)
        return self
コード例 #6
0
ファイル: dict.py プロジェクト: eigenhombre/hy
    def replace(self, other):
        for x in self:
            self[x].replace(other)
            x.replace(other)

        HyObject.replace(self, other)
コード例 #7
0
ファイル: dict.py プロジェクト: cbbrowne/hy
    def replace(self, other):
        for x in self:
            self[x].replace(other)
            x.replace(other)

        HyObject.replace(self, other)
コード例 #8
0
ファイル: list.py プロジェクト: yati-sagade/hy
    def replace(self, other):
        for x in self:
            x.replace(other)

        HyObject.replace(self, other)
        return self