def process_cluster(cluster, transform, validate, action): for_each( validate( transform(copy(cluster)), cluster ), action = action )
def find_files(which, where, action, strict_walk=True): for_each( which( group_by_size_hash_content( all_files(where, strict_walk=strict_walk) ) ), action = action )
def find_files(which, where, action, strict_walk=True): for_each(which( group_by_size_hash_content(all_files(where, strict_walk=strict_walk))), action=action)
def process_cluster(cluster, transform, validate, action): for_each(validate(transform(copy(cluster)), cluster), action=action)