当前位置: 首页>>代码示例>>Golang>>正文


Golang SortCodeData.IsException方法代码示例

本文整理汇总了Golang中github.com/AntoineAugusti/moduluschecking/models.SortCodeData.IsException方法的典型用法代码示例。如果您正苦于以下问题:Golang SortCodeData.IsException方法的具体用法?Golang SortCodeData.IsException怎么用?Golang SortCodeData.IsException使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/AntoineAugusti/moduluschecking/models.SortCodeData的用法示例。


在下文中一共展示了SortCodeData.IsException方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: WeightsForException2Or9

// Get weights to use for a bank account following the exception 2 or 9.
func WeightsForException2Or9(b m.BankAccount, sc m.SortCodeData) (weights []int) {
	if !(sc.IsException(2) || sc.IsException(9)) {
		panic("Expected exception 2 or exception 9 sort code")
	}

	a := b.NumberAtPosition("a")
	g := b.NumberAtPosition("g")

	// Default weights
	weights = sc.Weights

	switch {
	case a != 0 && g != 9:
		weights = []int{
			0, 0, 1, 2, 5, 3,
			6, 4, 8, 7, 10, 9, 3, 1,
		}
	case a != 0 && g == 9:
		weights = []int{
			0, 0, 0, 0, 0, 0,
			0, 0, 8, 7, 10, 9, 3, 1,
		}
	}

	return
}
开发者ID:AntoineAugusti,项目名称:moduluschecking,代码行数:27,代码来源:exception2And9.go

示例2: FollowsException3

// Check if we follow the criteria of the exception 3
func FollowsException3(b m.BankAccount, scData m.SortCodeData) bool {
	c := b.NumberAtPosition("c")

	hasNextAnd3 := scData.HasNext() && scData.Next.IsException(3)

	return (scData.IsException(3) || hasNextAnd3) && (c == 6 || c == 9)
}
开发者ID:AntoineAugusti,项目名称:moduluschecking,代码行数:8,代码来源:exception3.go

示例3: Handles

// Determine if the checker is able to validate the bank account
func (e Exception10Checker) Handles(account m.BankAccount, sc m.SortCodeData, attempt int) bool {
	if !sc.IsException(10) {
		return false
	}

	// if ab = 09 or ab = 99 and g = 9
	a := account.NumberAtPosition("a")
	b := account.NumberAtPosition("b")
	g := account.NumberAtPosition("g")

	return (a == 0 || a == 9) && b == 9 && g == 9
}
开发者ID:AntoineAugusti,项目名称:moduluschecking,代码行数:13,代码来源:exception10.go

示例4: Handles

// Determine if the checker is able to validate the bank account
func (e Exception6Checker) Handles(b m.BankAccount, sc m.SortCodeData, attempt int) bool {
	return sc.IsException(6)
}
开发者ID:AntoineAugusti,项目名称:moduluschecking,代码行数:4,代码来源:exception6.go

示例5: Handles

// Determine if the checker is able to validate the bank account
func (e Exception7Checker) Handles(account m.BankAccount, sc m.SortCodeData, attempt int) bool {
	// If g=9
	g := account.NumberAtPosition("g")

	return sc.IsException(7) && g == 9
}
开发者ID:AntoineAugusti,项目名称:moduluschecking,代码行数:7,代码来源:exception7.go


注:本文中的github.com/AntoineAugusti/moduluschecking/models.SortCodeData.IsException方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。