Skip to content

Commit

Permalink
Add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hadashiA committed Oct 13, 2024
1 parent b1318eb commit 1281fe6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1330,6 +1330,11 @@ state[:int_value] #=> 1234
state[:bool_value] #=> true
state[:float_value] #=> 678.9
state[:string_value] #=> "Hoge Hoge"

# A somewhat fuzzy matcher, the `is?` method, is available for shared states.
state[:a] #=> 'buz'
state[:a].is?('buz') #=> true
state[:a].is?(:buz) #=> true
```

### Memory Usage in Ruby
Expand Down

0 comments on commit 1281fe6

Please sign in to comment.