Tutorial by Topics: m

Scala comes with a concept of symbols - strings that are interned, that is: two symbols with the same name (the same character sequence), in contrary to strings, will refer to the same object during execution. Symbols are a feature of many languages: Lisp, Ruby and Erlang and more, however in Sca...
CGInterpolationQualityLevels of interpolation quality for rendering an image.Interpolation quality is a graphics state parametertypedef enum CGInterpolationQuality CGInterpolationQuality;
ParametersDetailsPixelHeight (System.Int32)The height of the image in units of image pixelsPixelWidth (System.Int32)The width of the image in units of image pixelsPixelFormat (System.Windows.Media.PixelFormat)The width of the image in units of image pixelsPixelsAnything which implements IList<T&...
Pattern matching is the process of branching depending on provided patterns. All pattern matching is done within a switch expression, and individual case expressions represent the patterns. The fundamental rules of pattern matching are: patterns will always be matched from top to bottom; the ...
pygame.display.set_mode(resolution=(0,0), flags=0, depth=0) # Returns a pygame.Surface representing the window on screen flags = pygame.FULLSCREEN | pygame.OPENGL # Flags can be combined using the "|" (bitwise OR or "pipe") character. parameterexplainationresolutiona pai...
Use Anemone::Core.new(url, options) to initialize the crawler Use on_every_page block to run code on every page visited Use .run method to start the crawl. No code beforehand will actually start any GET calls. ParameterDetailsurlURL (including protocol to be crawled)optionsoptional hash, s...
Prepare by setting up your local development machine with the aws command line tool and the git command.
Since they are unnamed, anonymous blocks cannot be referenced by other program units.
this.myForm = this.formBuilder.group creates a form object with user's configuration and assigns it to this.myForm variable. 'loginCredentials': this.formBuilder.group method creates a group of controls which consist of a formControlName eg. login and value ['', Validators.required], where th...
AnnotationPurpose@TableGeneratorSpecifies generator name and table name where generator can be found@GeneratedValueSpecifies generation strategy and refers to name of generator@OneToOneSpecifies one to one relationship between employee and desk, here Employee is owner of relationmappedByThis elemen...

Page 89 of 161