blob: 1f1b8d48e2d60fd00710270427eb3541af7ed0fd [file] [log] [blame]
// Copyright (c) 2016, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
@Deprecated('Use Object.hashAll instead')
library hash;
///
/// Generates a hash code for multiple [objects].
///
@Deprecated('Use Object.hashAll instead')
int hashObjects(Iterable<Object> objects) => Object.hashAll(objects);