View Source Faker.Commerce.Hy (Faker v0.18.0)

Fuctions for generating commerce related data in Armenian

Summary

Functions

Returns a random color.

Returns a random department.

Returns a complete product name, based on product adjectives, product materials and product names.

Returns a random adjective for a product.

Returns a random product material.

Returns a random product name.

Functions

@spec color() :: String.t()

Returns a random color.

Examples

iex> Faker.Commerce.Hy.color()
"մոխրագույն"
iex> Faker.Commerce.Hy.color()
"կանաչ"
iex> Faker.Commerce.Hy.color()
"երկնագույն"
iex> Faker.Commerce.Hy.color()
"մանուշակագույն"
@spec department() :: String.t()

Returns a random department.

Examples

iex> Faker.Commerce.Hy.department()
"Համակարգիչներ"
iex> Faker.Commerce.Hy.department()
"Երաժշտություն"
iex> Faker.Commerce.Hy.department()
"Գրքեր"
iex> Faker.Commerce.Hy.department()
"Էլեկտրոնիկա"
@spec product_name() :: String.t()

Returns a complete product name, based on product adjectives, product materials and product names.

Examples

iex> Faker.Commerce.Hy.product_name()
"հիանալի բրոնզե գլխարկ"
iex> Faker.Commerce.Hy.product_name()
"ֆանտաստիկ դանակ"
iex> Faker.Commerce.Hy.product_name()
"պլաստիկից աթոռ"
iex> Faker.Commerce.Hy.product_name()
"ալյումինե վերնաշապիկ"
Link to this function

product_name_adjective()

View Source
@spec product_name_adjective() :: String.t()

Returns a random adjective for a product.

Examples

iex> Faker.Commerce.Hy.product_name_adjective()
"ֆանտաստիկ"
iex> Faker.Commerce.Hy.product_name_adjective()
"հիանալի"
iex> Faker.Commerce.Hy.product_name_adjective()
"միջակ"
iex> Faker.Commerce.Hy.product_name_adjective()
"նրբագեղ"
@spec product_name_material() :: String.t()

Returns a random product material.

Examples

iex> Faker.Commerce.Hy.product_name_material()
"փայտե"
iex> Faker.Commerce.Hy.product_name_material()
"գրանիտե"
iex> Faker.Commerce.Hy.product_name_material()
"բրոնզե"
iex> Faker.Commerce.Hy.product_name_material()
"մարմարե"
@spec product_name_product() :: String.t()

Returns a random product name.

Examples

iex> Faker.Commerce.Hy.product_name_product()
"վերնաշապիկ"
iex> Faker.Commerce.Hy.product_name_product()
"ստեղնաշար"
iex> Faker.Commerce.Hy.product_name_product()
"վերնաշապիկ"
iex> Faker.Commerce.Hy.product_name_product()
"գլխարկ"