blob: 412e23f4bd8a5bc50e8d80ca0eae8b7f50749c2d [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. 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.
part of dart.core;
abstract class Strings {
/**
* Joins all the given strings to create a new string.
*
* *Deprecated* Use `strings.join(separator)` instead.
*/
external static String join(Iterable<String> strings, String separator);
/**
* Concatenates all the given strings to create a new string.
*
* *Deprecated* Use `strings.join()` instead.
*/
external static String concatAll(Iterable<String> strings);
}