Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ namespace Cloudikka.PolylineAlgorithm {
/// <summary>
/// Defines the <see cref="IPolylineDecoder{TOut}" />
/// </summary>
/// <typeparam name="TOut"></typeparam>
/// <typeparam name="TOut"> </typeparam>
public interface IPolylineDecoder<TOut> {
#region Methods

/// <summary>
/// The Decode
/// Method decoding polyline string to object
/// </summary>
/// <param name="source">The <see cref="string"/></param>
/// <returns>The <see cref="IEnumerable{TOut}"/></returns>
/// <param name="source">The <see cref="string"/>Polyline string to decode</param>
/// <returns>The <see cref="IEnumerable{TOut}"/>Decoded polyline object</returns>
IEnumerable<TOut> Decode(string source);

#endregion
Expand Down