Table of Contents

Interface IWordExtractor

Namespace
UglyToad.PdfPig.Util
Assembly
UglyToad.PdfPig.dll

An approach used to generate words from a set of letters.

public interface IWordExtractor

Methods

GetWords(IReadOnlyList<Letter>)

Generate words from the input set of letters.

IEnumerable<Word> GetWords(IReadOnlyList<Letter> letters)

Parameters

letters IReadOnlyList<Letter>

The letters to generate words for.

Returns

IEnumerable<Word>

An enumerable of words from this approach.