Files
MP-SPDZ/Compiler/tools.py
Marcel Keller 2008a8782d Overdrive.
2018-03-02 14:33:03 +00:00

10 lines
213 B
Python

# (C) 2018 University of Bristol. See License.txt
import itertools
class chain(object):
def __init__(self, *args):
self.args = args
def __iter__(self):
return itertools.chain(*self.args)