logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Data::Fake::Text - Fake text data generators

Author

       David Golden <dagolden@cpan.org>

Description

       This module provides fake data generators for random words and other textual data.

       All functions are exported by default.

Functions

fake_words
           $generator = fake_words();    # single "lorem" word
           $generator = fake_words($n);  # N "lorem" words, space separated
           $generator = fake_words( fake_int(1, 3) ); # random number of them

       Returns a generator that provides space-separated Text::Lorem words as a single scalar value.  The
       argument is the number of words to return (or a code reference to provide the number of words); the
       default is one.

   fake_sentences
           $generator = fake_sentences();    # single fake sentence
           $generator = fake_sentences($n);  # N sentences
           $generator = fake_sentences( fake_int(1, 3) ); # random number of them

       Returns a generator that provides Text::Lorem sentences as a single scalar value.  The argument is the
       number of sentences to return (or a code reference to provide the number of sentences); the default is
       one.

   fake_paragraphs
           $generator = fake_paragraphs();    # single fake paragraph
           $generator = fake_paragraphs($n);  # N paragraph
           $generator = fake_paragraphs( fake_int(1, 3) ); # random number of them

       Returns a generator that provides Text::Lorem paragraphs as a single scalar value.  The argument is the
       number of paragraphs to return (or a code reference to provide the number of paragraphs); the default is
       one.

Name

       Data::Fake::Text - Fake text data generators

Synopsis

           use Data::Fake::Text;

           fake_words(2)->();
           fake_sentences(3)->();
           fake_paragraphs(1)->();

Version

       version 0.006

See Also