// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System.Linq;
namespace Avalonia.Data.Converters
{
///
/// Provides a set of useful s for working with string values.
///
public static class BoolConverters
{
///
/// A multi-value converter that returns true if all inputs are true.
///
public static readonly IMultiValueConverter And =
new FuncMultiValueConverter(x => x.All(y => y));
}
}