Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add C implementation for math/base/assert/is-composite #1918

Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update README.md
Signed-off-by: Rutam <[email protected]>
performant23 authored Mar 16, 2024
commit 0cf457be17a23fee3ebcd68c2d03441613aef2fd
Original file line number Diff line number Diff line change
@@ -111,6 +111,8 @@ bool = isComposite( NaN );
Tests if a finite double-precision floating-point number is a composite number.

```c
#include <stdbool.h>

bool out = stdlib_base_is_composite( 3 );
// returns false
```