代码搜索:Patterns
找到约 8,017 项符合「Patterns」的源代码
代码结果 8,017
www.eeworm.com/read/169697/5414878
c patterns.c
/* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
*
* (C) 2001 by Argonne National Laboratory.
* See COPYRIGHT in top-level directory.
*/
#include "mpi.h"
#include
#include
#
www.eeworm.com/read/341021/3261566
c patterns.c
/* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
*
* (C) 2001 by Argonne National Laboratory.
* See COPYRIGHT in top-level directory.
*/
#include "mpi.h"
#include
#include
#
www.eeworm.com/read/333819/3382720
sgml patterns.sgml
Glob-style pattern matching
matches strings against patterns containing '*' (wildcard) and '?' (joker).
www.eeworm.com/read/313224/3644649
pl patterns.pl
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
# This file is built by mktables from e.g. UnicodeData.txt.
# Any changes made here will be lost!
#
# This file supports:
# \p{PatternSyntax} (and fuzzy
www.eeworm.com/read/305277/3777001
scala patterns.scala
package examples
object patterns {
trait Tree
case class Branch(left: Tree, right: Tree) extends Tree
case class Leaf(x: Int) extends Tree
val tree1 = Branch(Branch(Leaf(1), Leaf(2)), Branc
www.eeworm.com/read/305277/3778711
scala patterns.scala
trait Option[+a] {}
case class Some[a](x: a) extends Option[a] {
override def toString(): String = "Some(" + x + ")"
override def equals(that: Any): Boolean = that match {
case Some(x) => thi