Pudu programming language
Menu

Std.App.Session.find

1 declaration

fn

find: &Std.App.Session.Sessions -> Str -> &Std.App.Session.Bounds -> Int -> Option[Std.App.Session.Session]

This is a callable function.

What it does

The session a name refers to, if it is one that is held and still good.

Expiry is asked here rather than left to the caller, because a caller that

forgot would have a session that works forever and nothing would say so.

Read the signature

  • The text after the name is the type checked by Pudu.
  • Read arrows from left to right: inputs come first, and the final type is returned.
  • & borrows a value for this call instead of moving or copying it.
  • Names inside [ ] are type arguments, such as the item type held by a collection.
  • Option holds Some(value) or None when no value is available.

Back to Std.App.SessionSearch related declarations