|
| 1 | +// Copyright 2020 ONIXLabs |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +using System; |
| 16 | +using System.Collections.Generic; |
| 17 | +using System.ComponentModel; |
| 18 | + |
| 19 | +namespace OnixLabs.Core; |
| 20 | + |
| 21 | +/// <summary> |
| 22 | +/// Provides extension methods for objects. |
| 23 | +/// </summary> |
| 24 | +[EditorBrowsable(EditorBrowsableState.Never)] |
| 25 | +public static class RandomExtensions |
| 26 | +{ |
| 27 | + /// <summary> |
| 28 | + /// Obtains a random element from the specified <see cref="IReadOnlyList{T}"/> items. |
| 29 | + /// </summary> |
| 30 | + /// <param name="random">The current <see cref="Random"/> instance.</param> |
| 31 | + /// <param name="items">The <see cref="IReadOnlyList{T}"/> items from which to obtain a random element.</param> |
| 32 | + /// <typeparam name="T">The underlying type of the <see cref="IReadOnlyList{T}"/> collection.</typeparam> |
| 33 | + /// <returns>Returns a random element from the specified <see cref="IReadOnlyList{T}"/> items.</returns> |
| 34 | + public static T Next<T>(this Random random, IReadOnlyList<T> items) => items[random.Next(0, items.Count)]; |
| 35 | +} |
0 commit comments