Packages

  • package root
    Definition Classes
    root
  • package hevs
    Definition Classes
    root
  • package graphics

    A library used for teaching computer science in the ISC degree programme, notably for the course _101.1 Imperative programming_.

    A library used for teaching computer science in the ISC degree programme, notably for the course _101.1 Imperative programming_.

    The library provides classes for simple graphical drawing, with primitives such as points and lines drawing, simple text with different fonts, ... Input primitives are also available using keyboard or mouse. Several examples are also provided.

    Overview

    Here is how to create a window and draw a circle on it using FunGraphics :

    val f = new FunGraphics(400, 300)
    f.drawCircle(200,150, 50)
    Definition Classes
    hevs
  • package utils

    Provides classes for simplified input from the console and various other functions

    Provides classes for simplified input from the console and various other functions

    Definition Classes
    hevs
  • DateUtils
  • Input
  • ResourceList
  • ScalaDocSetup
  • StringFunctions
  • TextTools
p

hevs

utils

package utils

Provides classes for simplified input from the console and various other functions

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. utils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class Input extends AnyRef
  2. class ScalaDocSetup extends AnyRef

    Generate some javadoc

Value Members

  1. object DateUtils

    Version

    1.0

  2. object Input

    The class Input is here to enter data with the keyboard.
    The types below are supported by the Input class.

    The class Input is here to enter data with the keyboard.
    The types below are supported by the Input class.

    - String
    - Int
    - Double
    - Boolean
    - Char

    See also

    readString

    readInt

    readDouble

    readBoolean

    readChar

  3. object ResourceList

    List resources available from the classpath

    List resources available from the classpath

    Licence : CC BY-SA 4.0

    See also

    https://stackoverflow.com/a/3923182/2069348

  4. object StringFunctions

    Utility class with useful methods for string manipulation

  5. object TextTools

    A class with functions to manipulate text strings.

    A class with functions to manipulate text strings. Based on an old TextTools version that hid all the strings in static variables inside the class. This has all been removed and now everything is explicit and exposed.

Inherited from AnyRef

Inherited from Any

Ungrouped