Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 533 Bytes

Factor.md

File metadata and controls

33 lines (24 loc) · 533 Bytes

Factor

  • Factor(int $dividend)

Validates if the input is a factor of the defined dividend.

v::factor(0)->isValid(5); // true
v::factor(4)->isValid(2); // true
v::factor(4)->isValid(3); // false

Categorization

  • Math
  • Numbers

Changelog

Version Description
1.0.0 Created

See also: